开发者

Embed variable using sys.stdout.write in Python

开发者 https://www.devze.com 2023-02-03 16:24 出处:网络
I can embed variables using the print statement in python in this way i=10 print \"Value is %s\" % (i) Output

I can embed variables using the print statement in python in this way

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

Output

Value is 10

but doing this

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

gives me the following error

TypeError: unsupported operand type(s) for %:开发者_开发技巧 'NoneType' and 'int'

Can I embed variables using sys.stdout.write instead of print?


You got the parentheses wrong. Should be

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

The % operator takes a string and a tuple (or a single object) as arguments. You tried to apply the operator to the return value of sys.stdout.write(), which is None. You need to apply it to the string before it is passed to sys.stdout.write().

0

精彩评论

暂无评论...
验证码 换一张
取 消