DEBSOURCES
Skip Quicknav
sources / giac / 1.6.0.41%2Bdfsg1-1 / 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")