Posts by Gabriel Carvalho • 1 point
1 post
-
0
votes3
answers8071
viewsA: ASCII in Python
string = str('SVL#d#wxd#glvflsolqd#suhihulgd$$') decode = [] for letter in string: decoded = int(ord(letter)) code = chr(decoded + 3) …
1 post
0
votes3
answers8071
viewsstring = str('SVL#d#wxd#glvflsolqd#suhihulgd$$') decode = [] for letter in string: decoded = int(ord(letter)) code = chr(decoded + 3) …