import json print(json.dumps("機器貓")) #這時候其實輸出的並不是中文,而是ASCII中對應的機器貓的字符碼 #原因:json.dumps序列化時候對中文默認使用的ascii編碼,想要輸出真正的中文需要指定ensure_ascii=False import json print(json.dumps("機器貓",ensure_ascii=False))
import json print(json.dumps("機器貓")) #這時候其實輸出的並不是中文,而是ASCII中對應的機器貓的字符碼 #原因:json.dumps序列化時候對中文默認使用的ascii編碼,想要輸出真正的中文需要指定ensure_ascii=False import json print(json.dumps("機器貓",ensure_ascii=False))
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。