DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / 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")