줄기세포

[Python 기초 / 파이썬 마스터] 문자열 양 끝 공백 제거 메소드 (strip) 본문

Python

[Python 기초 / 파이썬 마스터] 문자열 양 끝 공백 제거 메소드 (strip)

줄기세포(Stem_Cell) 2023. 6. 15. 00:04
  • 문자열에서 좌우 공백을 제거하는 메소드
종류 용도 활용
strip() 좌우 공백 제거 list.strip()
lstrip() 좌 공백 제거 list.lstrip()
rstrip() 우 공백 제거 list.rstrip()

>>> a = '  test string  '

>>> a.strip()
'test string'

>>> a.lstrip()
'test string  '

>>> a.rstrip()
'  test string'
Comments