Python에서 줄 바꿈 인쇄

Vaibhav Vaibhav 2021년12월4일
Python에서 줄 바꿈 인쇄

프로그래밍 언어에서 다음 줄은 줄 바꿈 문자 또는 \n 문자로 표시됩니다. 이 문자는 그 뒤에 있는 모든 텍스트가 다음 줄에 인쇄됨을 나타냅니다. 문자열은 다음 줄을 나타내기 위해 이러한 개행 문자로 채워집니다.

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.