Python 列印中文字元

auccy發表於2020-12-28

轉自:https://www.zhihu.com/question/24559207

可以使用unicode函式

print (unicode("請輸入銷售額", encoding="utf-8"))

將utf-8編碼轉換為unicode就可以輸出中文了。

 

相關文章