gpt4 book ai didi

python - 如何在Python中的for循环中将数组值分配给列表

转载 作者:行者123 更新时间:2023-11-30 23:06:54 25 4
gpt4 key购买 nike

我对Python很陌生。我在尝试处理数组时对这部分感到震惊。

这是代码:

with open("top10backup.txt", "r") as filestream:

count=0

for line in filestream:

currentline = line.split("\t")

print(currentline[0])

category[count] = currentline[0]

print(currentline[1])

source[count] = currentline[1]

count = count + 1

print (count)

我收到错误如下:

category[count] = currentline[0]

Inconsistent use of tabs and spaces in indentation

谁能帮忙解释一下吗?

最佳答案

Python 中使用空格来表示不同的代码块,因此当您混合使用普通空格和制表符时,会很困惑,因为 Python 不确定一个制表符应被视为多少个空格。如果您找到所有制表符并将它们转换为空格(确保保留正确的缩进),那么您的代码将正常运行。

关于python - 如何在Python中的for循环中将数组值分配给列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32476514/

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