0x30

  • Python-字符与ASCII码

    字符和ASCII码转换 ord(‘a’) # 97 chr(97) # a print(‘a’, ord(‘a’), sep=”:”) # a:97 字符a的ASCII码的进制转换…

    python 2022年7月23日