본문으로 바로가기

파이썬 문자열 자료형

category python 2020. 5. 10. 19:45
반응형

 

문자열이란 문자,단어 등으로 구성된 문자들의 집합이다.

파이썬의 문자열은 어떻게 사용되는지 알아보자.

  • 큰 따옴표 양쪽 둘러싸기
  • 작은 따옴표 양쪽 둘러싸기
  • 큰따옴표 3개를 써서 양쪽 둘러싸기
  • 문자열에 작은 따옴표 포함 시키기
  • 문자열에 큰 따옴표 포함시키기
  • 백슬래시(\)를 사용하여 작은따옴표와 큰따옴표 포함시키기

  • 큰 따옴표 양쪽 둘러싸기
print("hello python")

>>> hello python

  • 작은 따옴표 양쪽 둘러싸기
print('hello python')

>>> hello python

  • 큰 따옴표 3개를 써서 양쪽 둘러싸기

문자열을 여러줄 써야 할때 이렇게 쓰면 된다.

hello = '''hello
python
'''
 
print(hello)

>>> hello
python

  • 문자열에 작은 따옴표 포함 시키기
print("hello's python")

>>> hello's python

  • 문자열에 큰 따옴표 포함시키기
print("hello's python")

  • 백슬래시(\)를 사용하여 작은따옴표와 큰따옴표 포함시키기
= 'python\'s test'
= "\"python\" hello "
 
print(a)
print(b)

>>> python's test
"python" hello 

 

 

 

 

반응형