Jan-05-2019, 11:29 AM
>>> def correct(s):
for c in s:
if c=='1':
c='I'
if c=='5':
c='S'
if c=='0':
c='O'
else:
c=c
return s
>>> x = "1teruje5z t0"
>>> correct(x)
'1teruje5z t0'W T F? Tried many things, this is simply as can be and still doesnt work.
