8 lines
123 B
Python
8 lines
123 B
Python
|
import re
|
||
|
|
||
|
|
||
|
bruh = "If the the problem is textual, use the the re module"
|
||
|
|
||
|
txt = re.sub("the the", "the", bruh)
|
||
|
|
||
|
print(txt)
|