参数是一个整型对象:
chr(integer)
返回整型对应的Unicode字符对象。
例子:
>>> chr(12) 'x0c' >>> chr(11411) 'ⲓ' >>> chr(11412) 'Ⲕ' >>> chr(114111) 'U0001bdbf' >>> chr(114112) 'U0001bdc0' >>> chr(1114111) 'U0010ffff' >>> chr(1114112) Traceback (most recent call last): File "<stdin>", line 1, in <module> ValueError: chr() arg not in range(0x110000)