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

时间:2010-10-02 17:32:53

标签: python printing formatting python-2.x python-2.5

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

2 个答案:

答案 0 :(得分:10)

除非指定,否则

sys.stdout.write只会写入没有换行符的字符串。

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

答案 1 :(得分:0)

易:

print x,

最后注意逗号。