# 返回可打印的字符串,等价repr()函数 # ascii编码字符 print(ascii('learn python!')) print(ascii(9876543210)) # 非ascii编码字符,转换为x,u或U的Unicode编码 print(ascii("中")) # 中文 print(ascii("β")) # 德文
更多:(未完结)