如何更改python数组的编码?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何更改python数组的编码?相关的知识,希望对你有一定的参考价值。
我使用以下代码从中文网站上刮取表格。它工作正常。但似乎我存储在列表中的内容没有正确显示。
import requests
from bs4 import BeautifulSoup
import pandas as pd
x = requests.get('http://www.sohu.com/a/79780904_126549')
bs = BeautifulSoup(x.text,'lxml')
clg_list = []
for tr in bs.find_all('tr'):
tds = tr.find_all('td')
for i in range(len(tds)):
clg_list.append(tds[i].text)
print(tds[i].text)
当我打印文本时,它显示中文字符。但是当我打印出列表时,它显示的是 u4e00 u671f uff0834 u6240 uff09'。我不确定是否应该更改编码或其他错误。
答案
这种情况没有错。
当你打印一个python列表时,python会在列表的每个元素上调用repr
。在python2中,unicode字符串的repr
显示组成字符串的字符的unicode代码点。
>>> c = clg_list[0]
>>> c # Ask the interpreter to display the repr of c
u'u201c985u201du5de5u7a0bu5927u5b66u540du5355uff08u622au6b62u52302011u5e743u670831u65e5uff09'
但是,如果你print
字符串,python使用文本编码(例如,utf-8)编码unicode字符串,并且您的计算机显示与编码匹配的字符。
>>> print c
“985”工程大学名单(截止到2011年3月31日)
请注意,在python3打印中,列表将显示您期望的中文字符,因为python3的unicode处理更好。
以上是关于如何更改python数组的编码?的主要内容,如果未能解决你的问题,请参考以下文章