micropython/tests/basics/builtin_chr.py

10 wiersze
139 B
Python

# test builtin chr (whether or not we support unicode)
print(chr(65))
try:
chr(0x110000)
except ValueError:
print("ValueError")