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