builtin_chr.py 139 B

123456789
  1. # test builtin chr (whether or not we support unicode)
  2. print(chr(65))
  3. try:
  4. chr(0x110000)
  5. except ValueError:
  6. print("ValueError")