In the Python code below,
x = '\101\102\103'
print(x)
please explain clearly to me why the output is ABC.
In the Python code below,
x = '\101\102\103'
print(x)
please explain clearly to me why the output is ABC.
Iād go along with decimal 65 being A in ASCII, but Unicode is hex, so U-0041. ASCII is pretty much outdated and Python 3 dropped it in favor of being full-on Unicode.