找回密碼
 立即註冊
查看: 3025|回復: 5

Unicode

[複製鏈接]

938

主題

506

回帖

3萬

積分

管理員

網頁設計師

積分
31361

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

發表於 2017-3-8 02:21:43 | 顯示全部樓層 |閱讀模式
  1. ### input ###
  2. print type("中文")
  3. print type("中文".decode("utf-8"))
  4. print type(u"中文")
複製代碼
### output ###
<type 'str'>
<type 'unicode'>
<type 'unicode'>

註:python2

938

主題

506

回帖

3萬

積分

管理員

網頁設計師

積分
31361

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

 樓主| 發表於 2017-3-8 02:28:07 | 顯示全部樓層
  1. print "中文" # encoded in utf-8
  2. print "中文".decode("utf-8").encode("big5") # encoded in big5
複製代碼

當你想要從 UTF-8 編碼狀態轉換成 Big5 編碼狀態時,你必需要將編碼狀態的字串先解碼成 Unicode 後,再重新編碼成 Big5 的編碼狀態才能成功。

註:python2

938

主題

506

回帖

3萬

積分

管理員

網頁設計師

積分
31361

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

 樓主| 發表於 2017-3-8 02:30:57 | 顯示全部樓層
  1. ### input ###
  2. print len("中文")
  3. print len("中文".decode("utf-8"))
  4. print len(u"中文")
複製代碼

### output ###
6
2
2

記得一定要以 Unicode 去計算字數才會得到正確的結果。

註:python2

938

主題

506

回帖

3萬

積分

管理員

網頁設計師

積分
31361

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

 樓主| 發表於 2017-3-8 02:36:48 | 顯示全部樓層
python3
  1. ### input ###
  2. print(type("中文"))
  3. print(type("中文".encode("utf-8")))
  4. print(type(u"中文"))
  5. print(len("中文"))
複製代碼

### output ###
<class 'str'>
<class 'bytes'>
<class 'str'>
2

938

主題

506

回帖

3萬

積分

管理員

網頁設計師

積分
31361

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

 樓主| 發表於 2017-3-8 02:41:06 | 顯示全部樓層
python3
  1. ### input ###
  2. with open("filename.txt",'w',encoding='utf-8') as outfile:
  3.     outfile.write("anything you want to write")
  4.     ...

  5. with open("filename.txt",'r',encoding='utf-8') as infile:
  6.     text = infile.read()
  7. print(type(text))
複製代碼

### output ###
<class 'str'>

注意: python2 的 I/O 物件並沒有支持 encoding 這個變數。

935

主題

650

回帖

3萬

積分

管理員

論壇管理員

積分
39671

最佳新人活躍會員熱心會員推廣達人宣傳達人灌水之王突出貢獻優秀版主榮譽管理論壇元老

發表於 2021-5-1 17:01:22 | 顯示全部樓層
在第一行或第二行:
  1. # coding=utf-8
複製代碼


  1. # -*- coding: UTF-8 -*-
複製代碼
[發帖際遇]: admin 發帖時在路邊撿到 2 金錢,偷偷放進了口袋. 幸運榜 / 衰神榜
您需要登錄後才可以回帖 登錄 | 立即註冊

本版積分規則

Archiver|手機版|小黑屋|DD論壇 維護: Redd Design

GMT+8, 2024-9-19 09:56 , Processed in 0.030687 second(s), 30 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回復 返回頂部 返回列表