print() 中的Python结束参数
默认情况下,python 的 print()函数以换行符结尾。具有 C/C++ 背景的程序员可能想知道如何在没有换行符的情况下进行打印。
Python 的 print()函数带有一个名为“end”的参数。默认情况下,该参数的值为'\n',即字符。您可以使用此参数以任何字符/字符串结束打印语句。
# This Python program must be run with
# Python 3 as it won't work with 2.7.
# ends the output with a
print("Welcome to" , end = ' ')
print("GeeksforGeeks", end = ' ')
输出 :
Welcome to GeeksforGeeks
另一个程序来演示结束参数的工作。
# This Python program must be run with
# Python 3 as it won't work with 2.7.
# ends the output with '@'
print("Python" , end = '@')
print("GeeksforGeeks")
输出 :
Python@GeeksforGeeks