精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

Python 中文編碼

使用 python 輸出 "hello, world!",英文沒有問題,但是如果你輸出中文字符 "你好,世界" 就有可能會(huì)碰到中文編碼問題。

python 文件中如果未指定編碼,在執(zhí)行過程會(huì)出現(xiàn)報(bào)錯(cuò):

#!/usr/bin/python

print ("你好,世界")

以上程序執(zhí)行輸出結(jié)果為:

file "test.py", line 2
syntaxerror: non-ascii character '\xe4' in file test.py on line 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

python中默認(rèn)的編碼格式是 ascii 格式,在沒修改編碼格式時(shí)無法正確打印漢字,所以在讀取中文時(shí)會(huì)報(bào)錯(cuò)。

解決方法為只要在文件開頭加入 # -*- coding: utf-8 -*- 或者 # coding=utf-8 就行了

注意:# coding=utf-8 的 = 號(hào)兩邊不要空格。

 

1. python 中文編碼范例

#!/usr/bin/python
# -*- coding: utf-8 -*-
 
print( "你好,世界" )

輸出結(jié)果為:

你好,世界

所以如果大家在學(xué)習(xí)過程中,代碼中包含中文,就需要在頭部指定編碼。

注意:python3.x 源碼文件默認(rèn)使用utf-8編碼,所以可以正常解析中文,無需指定 utf-8 編碼。如果你使用編輯器,同時(shí)需要設(shè)置 py 文件存儲(chǔ)的格式為 utf-8,否則會(huì)出現(xiàn)類似以下錯(cuò)誤信息:

syntaxerror: (unicode error) ‘utf-8’ codec can’t decode byte 0xc4 in position 0:
invalid continuation byte

2. pycharm 設(shè)置步驟

  • 進(jìn)入 file > settings,在輸入框搜索 encoding。
  • 找到 editor > file encodings,將 ide encoding 和 project encoding 設(shè)置為utf-8。

下一節(jié):python 基礎(chǔ)語法

相關(guān)文章