PR3_Steinberger/SL2/s2_a2.py

4 lines
121 B
Python
Raw Normal View History

2023-01-09 14:16:43 +01:00
import re
txt = "If the the problem is textual, use the the re module"
txt = re.sub("the the", "the", txt)
print(txt)