python函數之chr(i)

巴扎黑
發布: 2017-08-21 13:43:40
原創
3559 人瀏覽過

chr(i)

中文說明:

#傳回整數i對應的ASCII字元。與ord()作用相反。

參數x:取值範圍[0, 255]之間的正數。

版本:函數在python2和python3各個版本中都可用。不存在相容性問題。

英文說明:

Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string 'a'. This is the inverse of ord(). The argument must be in the range [0..255], inclusive; ValueError will be raised if i is outside that range. See also unichr().

程式碼實例

>>> chr(97)
'a'
>>> chr(98)
'b'
>>> ord('a')
97
>>> ord('b')
98
登入後複製

ps:呵呵,這個函數和php裡面的用法是一樣的哦

以上是python函數之chr(i)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板