gpt4 book ai didi

python - 在 Python 中使用 sys.stdout.write 嵌入变量

转载 作者:太空狗 更新时间:2023-10-29 20:42:55 28 4
gpt4 key购买 nike

我可以通过这种方式在 python 中使用 print 语句嵌入变量

i=10
print "Value is %s" % (i)

输出

Value is 10

但是这样做

i=10
sys.stdout.write ("Value is %s") % (i)

给我以下错误

TypeError: unsupported operand type(s) for %: 'NoneType' and 'int'

我可以使用 sys.stdout.write 而不是 print 来嵌入变量吗?

最佳答案

你把括号弄错了。应该是

i=10
sys.stdout.write("Value is %s" % i)

% 运算符将字符串和元组(或单个对象)作为参数。您尝试将运算符应用于 sys.stdout.write() 的返回值,即 None。在将其传递给 sys.stdout.write() 之前,您需要将其应用于字符串。

关于python - 在 Python 中使用 sys.stdout.write 嵌入变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4669791/

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