python用print输出中文字符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python用print输出中文字符相关的知识,希望对你有一定的参考价值。

判断了字符集之后,如要显示中文,需要用print。示例如下:

import urllib2

import re

page = 1

url = ‘http://www.qiushibaike.com/hot/page/‘ + str(page)

user_agent = ‘Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)‘

headers = { ‘User-Agent‘ : user_agent }

out_file = open ("qiushibaike.txt", "w")

request = urllib2.Request(url,headers = headers)

response = urllib2.urlopen(request)

buf=response.read()

out_file.write(buf)

out_file.close()

list_jpg=re.findall(r‘http://.+\.jpg‘, buf)

list_joketxt=re.findall(r‘<span>.+</span>‘, buf)


print buf #输出网页源文件,格式正确,中文显示正常

# list_jpg=re.findall(r‘<img.+src=.+\.jpg‘, buf)

list_jpg=re.findall(r‘http://.+\.jpg‘, buf)

list_joketxt=re.findall(r‘<span>.+</span>‘, buf)

print list_joketxt #显示不正确,中文显示不正常

print list_joketxt[0]  #输出正确,中文显示正常

for jok in list_joketxt:

    print jok            #输出正确,中文显示正常



以上是关于python用print输出中文字符的主要内容,如果未能解决你的问题,请参考以下文章

用Python从键盘输入一个有中文和英文的字符串,编程分别输出中文和英文,并统?

Python3基础 字符串的拼接 字符串变量相加后,用print输出

python的print字符串的输出

Python之Win字符编码详解

Python简介之输入和输出

Python基础(使用print()函数输出格式化字符串)