在Python中,如果你想要将输出打印在同一行上,你可以使用print
函数的end
参数。默认情况下,print
函数会在输出的末尾添加一个换行符(\n
),这会导致每次调用print
时都会在新的行开始输出。通过设置end
参数为一个空字符串(''
),你可以阻止print
函数添加换行符,从而使输出保持在同一行。
下面是一个简单的示例代码:
print("Hello, ", end='')
print("World!")
这段代码的输出将会是:
Hello, World!
而不是默认的:
Hello,
World!
如果你想要连续打印多个内容在同一行上,你可以连续调用print
函数并设置end
参数为空字符串:
print("Output one", end='')
print("Output two", end='')
print("Output three")
这将输出:
Output oneOutput twoOutput three
注意,在最后一个print
函数调用中,如果你想要换行,你可以省略end
参数或者将其设置为默认的换行符\n
。
参考链接:
print
函数的说明:https://docs.python.org/3/library/functions.html#print领取专属 10元无门槛券
手把手带您无忧上云