PR3_Studienleistung_1_Prof_.../SL_2/s2_a2.py

6 lines
129 B
Python
Raw Normal View History

2023-01-13 15:34:17 +01:00
import re
before = "If the the problem is textual, use the the re module"
after = re.sub("the the", "the", before)
print(after)