10 lines
139 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# test builtin chr (whether or not we support unicode)
print(chr(65))
try:
chr(0x110000)
except ValueError:
print("ValueError")