8 lines
163 B
Python
8 lines
163 B
Python
texte = input()
|
|
caracteres = list(texte)
|
|
|
|
for loop in range(len(texte)):
|
|
if caracteres[loop] == " ":
|
|
caracteres[loop] = "_"
|
|
|
|
print("".join(caracteres)) |