如何在控制台上的打印语句附近打印return语句的结果?

时间:2019-03-26 10:18:10

标签: python

我有必要在控制台上打印一个句子,并在该句子附近打印return语句的结果。这是一个示例:

print("Le stringhe sono vuote")
return None

这是一个函数的一段代码。 这在函数之外:

print(function([...]))

这是结果:

https://ibb.co/wM1zWk5

如何绕过新行?

3 个答案:

答案 0 :(得分:5)

print("Le stringhe sono vuote", end = "")

答案 1 :(得分:2)

如果您使用的是 Python 3.x

  

默认情况下,python的print()函数以换行符结尾。 Python的   print()函数带有一个名为“ end”的参数。默认情况下,   此参数的值为“ \ n”,即换行符。您可以   使用此参数以任何字符/字符串结束打印语句。

Selection.Placement = xlMoveAndSize

Python 2.6.0a2和更高版本

print("Le stringhe sono vuote", end="")

OR

为什么不返回联合值:

from __future__ import print_function
print("Le stringhe sono vuote", end="")

答案 2 :(得分:1)

  

如何绕过新行?

您可以将end=""传递给print()

print(function([...]), end="")