Python 如何列印中文

2021-08-13 21:16:56 字數 649 閱讀 3549

學習了print("hello python world"),但是如何列印中文呢?

直接print(「你好,python」),控制台報警內容:

網上搜尋後,修改為如下:

# -*- coding:utf-8 -*- 

###測試python輸出中文是否亂碼 

import json 

print u'哈哈你好' 

string='哈哈你好' 

print string.decode('utf-8') 

t_tuple=('哈哈','你好') 

t_list=['哈哈','你好'] 

t_dict= 

print json.dumps(t_tuple,encoding='utf-8',ensure_ascii=false) 

print json.dumps(t_list,encoding='utf-8',ensure_ascii=false) 

print json.dumps(t_dict,encoding='utf-8',ensure_ascii=false)

結果執行後

python如何列印文字 python怎麼列印字元

print 方法用於列印輸出,最常見的乙個函式。在 python3.3 版增加了 flush 關鍵字引數。print 在 python3.x 是乙個函式,但在 python2.x 版本不是乙個函式,只是乙個關鍵字。推薦 python教程 以下是 print 方法的語法 print objects,s...

C 列印中文

text.txt內容 列印檔案中的中文多字元不需要使用setlocate指定編碼 printf printf file string s n buffer cout 列印引數中的寬字元,輸入引數為 中國人 wchar t arg argv 1 wprintf l wprintf setlocale ...

python如何使用檔案 Python中檔案的應用

一 基本的檔案處理 a.什麼是檔案 作業系統提供給使用者的虛擬單位 a.檔案有什麼用 儲存資料 c.開啟檔案的流程 1.找到檔案的路徑 2.雙擊開啟 f open path,r 3.檢視檔案 data f.read print data 4.寫檔案 f open path,w f.write nic...