打印没有换行符或空格的变量 python3通过print(x,end ='')来做 如何在python 2.5中完成它
答案 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,
最后注意逗号。