6 lines
129 B
Python
6 lines
129 B
Python
|
import re
|
||
|
|
||
|
|
||
|
before = "If the the problem is textual, use the the re module"
|
||
|
after = re.sub("the the", "the", before)
|
||
|
print(after)
|