python中的ord,chr函數

來源:互聯網
上載者:User

標籤:

chr()、unichr()和ord()

chr()函數用一個範圍在range(256)內的(就是0~255)整數作參數,返回一個對應的字元。unichr()跟它一樣,只不過返回的是Unicode字元,這個從Python 2.0才加入的unichr()的參數範圍依賴於你的Python是如何被編譯的。如果是配置為USC2的Unicode,那麼它的允許範圍就是range(65536)或0x0000-0xFFFF;如果配置為UCS4,那麼這個值應該是range(1114112)或0x000000-0x110000。如果提供的參數不在允許的範圍內,則會報一個ValueError的異常。

ord()函數是chr()函數(對於8位的ASCII字串)或unichr()函數(對於Unicode對象)的配對函數,它以一個字元(長度為1的字串)作為參數,返回對應的ASCII數值,或者Unicode數值,如果所給的Unicode字元超出了你的Python定義範圍,則會引發一個TypeError的異常。

>>> chr(65)

‘A‘

>>> ord(‘a‘)

97

>>> unichr(12345)

u‘\u3039‘

>>> chr(12345)

Traceback (most recent call last):

   File "<stdin>", line 1, in ?    

     chr(12345)

ValueError: chr() arg not in range(256)

>>> ord(u‘\ufffff‘)

Traceback (most recent call last):

   File "<stdin>", line 1, in ?

     ord(u‘\ufffff‘)

TypeError: ord() expected a character, but string of length 2 found

>>> ord(u‘\u2345‘)

9029

python中的ord,chr函數

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.