Python - print() 中的 end 参数
Python 中的 print() 函数始终创建换行符。不过,此函数还有一个参数,可以加在其他字符上,而不是在最后加入换行符。在本文中,我们将探讨此参数的各种选项。
示例
以下示例显示了我们可以将值赋值给 end 参数的各种方法,以及查看其中的结果。
print("Welcome to ") print("Tutorialspoint") print("Welcome to ", end = ' ') print("Tutorialspoint") print("emailid",end='@') print("tutorialspoint.com")
输出
运行以上代码会得到以下结果:
Welcome to Tutorialspoint Welcome to Tutorialspoint [email protected]
广告