gpt4 book ai didi

python - 在python中使用xlrd从xls中提取数据

转载 作者:太空宇宙 更新时间:2023-11-04 08:08:49 24 4
gpt4 key购买 nike

我正在尝试从 .xls 文件中提取数据 并制作一个列表,但我得到的列表为 [u'elem1', u'elem2', u'elem3 '],但如果我单独打印,我会得到:

elem1
elem2
elem3

那是什么东西,如何移除它?

这是我的代码...

from xlrd import open_workbook
xls=open_workbook('name.xls')
for sheets in xls.sheets():
list1=[]
for col in range(sheets.ncols):
for rows in range(sheets.nrows):
list1.append(sheets.cell(rows, col).value)
print(list1)
for i in list1:
print(i)

最佳答案

您可以将文本定义为字符串,同时将数据附加到 list1.append(str(sheets.cell(rows, col).value)) 中的列表中以删除 [u ' 。代码将是:

   from xlrd import open_workbook
xls=open_workbook('name.xls')
for sheets in xls.sheets():
list1=[]
for col in range(sheets.ncols):
for rows in range(sheets.nrows):
list1.append(str(sheets.cell(rows, col).value))
print(list1)
for i in list1:
print i

关于python - 在python中使用xlrd从xls中提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26672349/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com