본문 바로가기
자료구조 & 알고리즘/CodeUp Python 기초 100제

[CodeUp Python 기초 100제] # 8번_출력하기08

by ge_ai 2022. 4. 14.

6008 : [기초-출력] 출력하기08

입력

입력 없음
출력

print("Hello\nWorld")

 

 

[내 풀이]

print("print(\"Hello\\nWorld\")")

 

 

[모범 답안]

print("print(\"Hello\\nWorld\")")

 

 

 

 

[참고]

더보기

print 명령 안에 서식 문자로 \n을 사용하면 줄 바꿈(new line) 문자로 사용된다.

 

댓글