打印没有换行符或空格的变量python3通过print(x,end ='')如何在python 2.5中执行它
sys.stdout.write
写入(仅)没有换行符的字符串,除非指定。
>>> x = 4
>>> print x
4
>>> import sys
>>> sys.stdout.write(str(x)) # you have to str() your variables
4>>> # <- no newline
简单:
print x,
最后注意逗号。