python函式每日一講 - chr(i)

pythontab發表於2013-01-28

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裡面的用法是一樣的哦


相關文章