Coding/Python

[python] 출력문 ( sep, end, escape )

dodomp0114 2021. 11. 3. 21:25
print

 

파이썬에서 원하는 문자나 숫자를 출력해주는 명령어.

 

 

- 문자열 출력

 

ex)

print("Hello World")
print('Hello World')

※ 큰 따옴표(" ")가 들어간 문장은 작은 따옴표로 (' ') 감싸주고,

   작은 따옴표가(' ')가 들어간 문장은 큰 따옴표로 (" ") 감싸줍니다.

 

 

ex)

print("haru's blog")

    


 

 

 sep, end, escape

 

- sep (separation)

,문자 로 구분 지어진 문자들 사이에 ,문자 대신 구분지어 해줄 문자 지정.

 

ex)

>>> print('c','o','d','e', sep="?")
c?o?d?e

 

 

- end

 

줄바꿈 되어있는 출력문을 이어서 출력.

 

ex)

>>> print("Welcome", end=" ")
>>> print("my world")

Welcome my world

 

 

 

- Escape 문자

 

  • \n = 줄바꿈
  • \t = tab키
  • \" = "문자 출력
  • \' = '문자 출력
  • \\ = \문자 출력

 

 

ex)

print("안녕하세요\t하루에하나 블로그입니다.\n반갑습니다.")
print("큰 따옴표 = \"")
print('작은 따옴표 = \'')
print("i love python★\b") # \b 로 인해 ★기호 삭제

--------------------------출력------------------------------

안녕하세요	하루에하나 블로그입니다.
반갑습니다.
큰 따옴표 = "
작은 따옴표 = '
i love python