2014-06-06 03:51:03 +10:00
|
|
|
# anything above 0xa0 is printed as Unicode by CPython
|
2014-06-13 21:23:00 +03:00
|
|
|
# the abobe is CPython implementation detail, stick to ASCII
|
|
|
|
for c in range(0x80):
|
2019-10-18 19:18:06 +11:00
|
|
|
print("0x{:02x}: {}".format(c, repr(chr(c))))
|