gpt4 book ai didi

python + 写入文件的分号写在下一行

转载 作者:行者123 更新时间:2023-12-01 06:15:43 25 4
gpt4 key购买 nike

我有这个简单的Python表达式:

fscript.write (("update %s va set %s = %s where %s = %s;") % (argv[1],argv[2],vl[0],argv[3],vl[1]))

我希望收到这样的输出

update some_table va set active_id = 1 where id = 5;
update some_table va set active_id = 1 where id = 3;
...more lines...

但是,我明白了

update some_table va set active_id = 1 where id = 5
;update some_table va set active_id = 1 where id = 3
...more lines....

我缺少什么吗?

提前致谢

最佳答案

我会尝试将 strip() 添加到您最新的参数中,该参数可能以 \n 结尾。

fscript.write (("update %s va set %s = %s where %s = %s;") % (argv[1],argv[2],vl[0],argv[3],vl[1].strip()))

关于python + 写入文件的分号写在下一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3449358/

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