python常用工具小函數-字元類型轉換,python常用工具

來源:互聯網
上載者:User

python常用工具小函數-字元類型轉換,python常用工具

  Python3有兩種表示字元序列的類型:bytes和str。前者的執行個體包含原始的8位值就是的位元組,每個位元組有8個二進位位;後者的執行個體包含Unicode字元。把Unicode字元轉成位元據最常見的編碼方式就是UTF-8,必須使用encode方法;把位元據轉成Unicode字元必須使用decode方法。

  實際開發中我們經常需要在這兩種字元類型間轉換,所以需要寫兩個輔助函數,以便在這兩種情況之間轉換,使得轉換後的輸入資料能夠符合我們的預期。

1、接受str或bytes,並總是返回str的方法:

def to_str(str_or_bytes):

  if isinstance(str_or_bytes,bytes):

    value = str_or_bytes.decode('utf-8')

  else:

    value = str_or_bytes

  return value

 

2、接受str或bytes,並總是返回bytes的方法:

def to_bytes(str_or_bytes):

  if isinstance(str_or_bytes,str):

    value = str_or_bytes.encode('utf-8')

  else:

    value = str_or_bytes

  return value

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.