怎样使 Python 输出时不换行

2024-12-16 17:14:21
推荐回答(2个)
回答1:

import sys
# no new line
sys.stdout.write("abc")
# has new line
sys.stdout.write("abc\n")
 
# python2 print statement with comma at the end.
print "abc",
 
# python3 print function
print("abc", end="")

回答2:

使用sys.stdout.write()输出。