gpt4 book ai didi

python - 导入 xlrd 值 append 到列表

转载 作者:太空宇宙 更新时间:2023-11-04 05:53:44 25 4
gpt4 key购买 nike

请原谅这个基本问题,但我无法在任何地方找到答案。我正在尝试使用 xlrd 从 Excel 列导入值并将它们转换为列表。有什么建议么?到目前为止,这是我所拥有的,但该列表返回所有带有“number: 1.0”的值,而不仅仅是 1.0。

# Access Excel Workbook
datafile = "Household Debt Values.xlsx"
workbook = xlrd.open_workbook(datafile)
sheet = workbook.sheet_by_index(0)

# Create CBSA list
CBSAlist = []
for value in sheet.col(1):
CBSAlist.append(value)
print CBSAlist

返回:[number:1.0, number:2.0, number:3.0, number:4.0, number:5.0, number:6.0, number:7.0, number:8.0, number:9.0, number:10.0, number:11.0,编号:12.0,编号:13.0,编号:14.0,编号:15.0,编号:16.0,编号:17.0,编号:18.0,编号:19.0,编号:20.0,编号:21.0,编号:22.0,编号:23.0,编号: 24.0,人数:25.0]

最佳答案

首先尝试拆分值:

# Create CBSA list 
CBSAlist = []
for value in sheet.col(1):
CBSAlist.append(float(str(value).split(":")[1]))
print CBSAlist

结果

[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0]

关于python - 导入 xlrd 值 append 到列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28872309/

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