如何在没有“ \n
”和参数的情况下进行打印
示例:
打印此:print("%d, %d" % (a, b))
没有换行符
我尝试了此操作(但不起作用):print("%d, %d" % (a, b),end="")
我有这个:
File "./test.py", line 9
print("%d, %d" % (a, b), end="")
^
SyntaxError: invalid syntax
答案 0 :(得分:0)
Python 2.x :
from __future__ import print_function # import the print func
print("{}, {}".format(1, 2), end="") # 1, 2
Python 3.x :
print("{}, {}".format(1, 2), end="") # 1, 2
答案 1 :(得分:-2)