gpt4 book ai didi

python - ValueError : not enough values to unpack (expected 2, got 1) when splitting line

转载 作者:行者123 更新时间:2023-12-03 08:09:39 28 4
gpt4 key购买 nike

with open("words_10percent.txt") as f:
file_data = f.read()
word_frequency = {}
for line in file_data.split("\n"):
word, frequency = line.split(",")
word_frequency[word] = float(frequency)

在第5行中,尝试拆分行时出现值错误。

最佳答案

此代码是绝对正确的。没有错误。再次检查您的文本文件。

为了演示,我在'words_10percent.txt'文件中添加了以下四行:

Ram, 50.55
class, 45.88
black, 35.99
data, 35.60

我得到以下输出:
Ram
50.55
class
45.88
black
35.99
data
35.60

关于python - ValueError : not enough values to unpack (expected 2, got 1) when splitting line,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61161565/

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