在 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