1、输出不换行
import sys sys.stdout.write("hello world!") # 在 python 2.x 中使用 python 3 的print from __future__ import print_function print("hello world!", end="") # ps. 这种写法并不是正确的,会在末尾多一个空格 print "hello world",
1、输出不换行
import sys sys.stdout.write("hello world!") # 在 python 2.x 中使用 python 3 的print from __future__ import print_function print("hello world!", end="") # ps. 这种写法并不是正确的,会在末尾多一个空格 print "hello world",
原文:https://www.cnblogs.com/sky58/p/8635398.html