DEBSOURCES
Skip Quicknav
sources / giac / 1.9.0.93%2Bdfsg2-3 / micropython-1.12 / tests / basics / builtin_chr.py
123456789
# test builtin chr (whether or not we support unicode) print(chr(65)) try: chr(0x110000) except ValueError: print("ValueError")