摘要:[Python] 內建函式chr, unichr, ord
chr, unichr, ord 都是針對字元轉換的函式。
chr()
Format: chr(i), i: integer
傳入參數int[0..255] 的ASCII code編碼,回傳對應的ASCII code字元。
>>> chr(97) 'a'
unichr()
Format: unichr(i), i: integer
傳入參數Unicode編碼(包含ACSII code編碼),回傳對應的Unicode字元。
>>> unichr(97) u'a'
ord()
Format: ord(c), c: character
傳入字元,回傳對應的Unicode字元。
>>> ord('a') 97