Blog

Cuál es la salida del siguiente código?

Str = ‘soon’
for x in Str:
if x == ‘o’:
x = ‘e’
if x == ‘n’:
pass
print(x, end=”, ”)