gpt4 book ai didi

python - 错误: ValueError: invalid literal for int() with base 10: ''

转载 作者:行者123 更新时间:2023-12-01 05:15:56 27 4
gpt4 key购买 nike

我在文件 build_ver.txt 中有值 1028,运行以下脚本时出现以下错误,脚本尝试将计数增加 1 并将值写回文件。.请建议如何克服此问题?

with open(r'\\Network\Build_ver\build_ver.txt','w+') as f:
value = int(f.read())
f.seek(0)
f.write(str(value + 1))

错误:-

Traceback (most recent call last):
File "build_ver.py", line 2, in <module>
value = int(f.read())
ValueError: invalid literal for int() with base 10: ''

最佳答案

这就是在 w+ 模式下打开文件的作用:

w+
Open for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the beginning of the file.

强调我的。您的文件是空的,read() 将为您提供一个空字符串。

也许您想以 r+ 模式打开?

关于python - 错误: ValueError: invalid literal for int() with base 10: '' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23231518/

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