gpt4 book ai didi

python - 尝试写入文件时缺少变量

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

谁能看出我错在哪里?我只是将变量写入文件以检查一切是否符合预期。除“y”外,一切正常。为什么不将“y”写入文件?这可能很明显,但我看不到错误。在 python shell 中工作,但在我的脚本中不工作。 RPi3 上的 Python 3.7。

QS = request.args.get('q')
xVal,yVal = QS.split('.')
x = xVal
y = yVal*-1

path = 'debug.txt'
dataRec = open(path, 'a')
debugInfo = (str(QS) + ' xVal is ' + str(xVal) + ' yVal is ' + str(yVal) + ' Y is ' + str(y) + '\n')
dataRec.write(str(debugInfo))
dataRec.close()

输出到debug.txt

-7.-70 xVal is -7 yVal is -70 Y is
-7.-70 xVal is -7 yVal is -70 Y is
-7.-70 xVal is -7 yVal is -70 Y is
0.0 xVal is 0 yVal is 0 Y is

在我发疯之前,我会很感激任何帮助!!

最佳答案

值是字符串。在将它们相乘之前,您需要将它们转换为整数:

y = int(yVal)*-1

但为什么现在是空的?因为字符串 *n 使该字符串重复 n 次。负数被认为与 0 相同,使 y 成为空字符串。

关于python - 尝试写入文件时缺少变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58433291/

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