python xlrd 读取中文内容excel. 读出来一个cell内容是\u6a21\u5757\u540d\u79f0 怎么转中文print出来啊

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python xlrd 读取中文内容excel. 读出来一个cell内容是\u6a21\u5757\u540d\u79f0 怎么转中文print出来啊相关的知识,希望对你有一定的参考价值。

这个我试了一下
s=u'\u6a21\u5757\u540d\u79f0'
s.encode('gbk')
print s.encode('gbk') #输出结果
模块名称
参考技术A >>> print u'\u6a21\u5757\u540d\u79f0'
模块名称

python xlrd - 读取Excel文件

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import xlrd

# 获取 Excel
workbook = xlrd.open_workbook('test.xls')
# 获取第一个sheet
sheet = workbook.sheet_by_index(0)
rows = sheet.nrows  # 行
cols = sheet.ncols  # 列 

for row in xrange(rows):
    # 获取第一行第一列
    ip = sheet.cell_value(row, 0)
    # 获取第一行第二列
    nfs = sheet.cell_value(row, 1)
    

以上是关于python xlrd 读取中文内容excel. 读出来一个cell内容是\u6a21\u5757\u540d\u79f0 怎么转中文print出来啊的主要内容,如果未能解决你的问题,请参考以下文章

python 读 excel 模块: xlrd

python使用xlrd模块读取Excel

在 Python 中使用 xlrd 将数字 Excel 数据读取为文本

python(读取excel操作-xlrd模块)

python xlrd 读取中文内容excel. 读出来一个cell内容是\u6a21\u5757\u540d\u79f0 怎么转中文print出来啊

python xlrd 读取excel