3 lines
93 B
Python
3 lines
93 B
Python
|
import re
|
||
|
text = 'Python Exercises, PHP exercises.'
|
||
|
print(re.sub("[ ,.]", ":", text))
|