chr() 方法從整數(表示字符的 unicode 代碼點)返回字符(字符串)。
用法:
chr(i)
參數:
chr()
方法采用單個參數,一個整數 i
。
整數的有效範圍是從 0 到 1,114,111。
返回:
chr()
返回:
- 一個字符(字符串),其 Unicode 代碼點是整數
i
如果整數i
超出範圍,將引發ValueError
。
示例 1:chr() 如何工作?
print(chr(97))
print(chr(65))
print(chr(1200))
輸出
a A Ұ
這裏,97是a的unicode,65是A的unicode,1200是Ұ的unicode。
示例 2:傳遞給 chr() 的整數超出範圍
print(chr(-1))
輸出
Traceback (most recent call last): File "", line 1, in ValueError: chr() arg not in range(0x110000)
運行程序時,會引發 ValueError
。
這是因為傳遞給chr()
方法的參數超出了範圍。
chr()
函數的逆運算可以通過ord()
函數進行。要了解更多信息,請訪問Python ord() function
相關用法
- Python chr()用法及代碼示例
- Python Wand charcoal()用法及代碼示例
- Python numpy chararray.tostring用法及代碼示例
- Python numpy char.chararray.tostring用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python cmath.isclose()用法及代碼示例
- Python cmp()用法及代碼示例
- Python calendar weekday()用法及代碼示例
- Python compile()用法及代碼示例
- Python callable()用法及代碼示例
- Python cmath.log10()用法及代碼示例
- Python cmath.asinh()用法及代碼示例
- Python OpenCV cv2.rectangle()用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python cmath.log()用法及代碼示例
- Python OpenCV cv2.line()用法及代碼示例
- Python OpenCV cv2.arrowedLine()用法及代碼示例
- Python cmath.phase()用法及代碼示例
- Python codecs.encode()用法及代碼示例
- Python calendar setfirstweekday()用法及代碼示例
注:本文由純淨天空篩選整理自 Python chr()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。