在 Python 中打印换行符

Vaibhav Vaibhav 2021年12月4日
在 Python 中打印换行符

在编程语言中,下一行由换行符或 \n 字符表示。这个字符表示它之后出现的任何文本都将在下一行打印。字符串用这些换行符填充以表示下一行。

在 Python 中,我们可以使用这个字符在下一行打印文本或创建换行符。

Python 中的换行符或 "\n"

参考以下代码。它展示了如何使用换行符来创建换行符并在新行中打印文本。

print("Hello\nWorld") # Notice the use of \n
print("My\nName\nIs\nPython") # Notice the use of \n

a = [1, 2, 3, 4, 5]

for x in a:
    print(x, end = "\n") # \n is append to the end of the string 

输出:

Hello
World
My
Name
Is
Python
1
2
3
4
5
Vaibhav Vaibhav avatar Vaibhav Vaibhav avatar

Vaibhav is an artificial intelligence and cloud computing stan. He likes to build end-to-end full-stack web and mobile applications. Besides computer science and technology, he loves playing cricket and badminton, going on bike rides, and doodling.

LinkedIn GitHub