在没有空格或换行符的python中打印变量

问题描述 投票:6回答:2

打印没有换行符或空格的变量python3通过print(x,end ='')如何在python 2.5中执行它

python printing formatting python-2.x python-2.5
2个回答
11
投票

sys.stdout.write写入(仅)没有换行符的字符串,除非指定。

>>> x = 4
>>> print x
4
>>> import sys
>>> sys.stdout.write(str(x)) # you have to str() your variables
4>>> # <- no newline

0
投票

简单:

print x,

最后注意逗号。

© www.soinside.com 2019 - 2024. All rights reserved.