不换行的解决办法:
在print末尾添加逗号即可;
例如:
print "The First Line:",
print 'Do not change line with comma.'
Python3.x.x版本中的print()函数有以下几个参数:
print(*value,sep = ' ',end = '\n',file = sys.stdout,flush = False)
*value:打印的内容,为可变长参数;
sep:用逗号拼接时的分隔符,默认为空格;
end:每次打印完输出的结束符,默认为换行;
file:输出的流文件,默认为sys.stdout,可设置为sys.stdin、sys.stderr;
flush:是否立即输出到流文件,默认为False。
解决方法:把end设置为空字符串就可以了。
Python2.x.x的print可以在末尾加上逗号来解决,不过它会加上一个空格。要想不带空格的话,就需要采用下面的方式:
from __future__ import print_function
就可以用python3.x.x的方法来操作了。
在末尾添加逗号:
print 'Do not change line with comma.',