Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import re #Replace the first two occurrences of a white-space character with the digit 9: txt = "The rain in Spain" x = re.sub("\s", "9", txt, 2) print(x)
The9rain9in Spain