Datasets:
| import re | |
| text = 'Python Exercises' | |
| def replace_spaces(text): | |
| text = text.replace(' ', '_') | |
| return text | |
| text = text.replace('_', ' ') | |
| return text |
| import re | |
| text = 'Python Exercises' | |
| def replace_spaces(text): | |
| text = text.replace(' ', '_') | |
| return text | |
| text = text.replace('_', ' ') | |
| return text |