반응형
문자열에서 공백 (공백 및 탭)을 제거하는 Python 함수가 있습니까?
예 : \ t example string \ t
? 예제 문자열
해결 방법
s = " \t a string example\t "
s = s.strip()
s = s.rstrip()
s = s.lstrip()
s = s.strip(' \t\n\r')
이렇게하면 왼쪽, 오른쪽 또는 왼쪽에서 공백, \ t
, \ n
또는 \ r
문자가 제거됩니다. 문자열의 양쪽.
import re
print(re.sub('[\s+]', '', s))
다음과 같이 출력되어야합니다.
astringexample
참조 페이지 https://stackoverflow.com/questions/1185524
반응형
'파이썬' 카테고리의 다른 글
파이썬에서 줄임표 슬라이싱 구문을 어떻게 사용합니까? (0) | 2021.02.11 |
---|---|
파이썬 How can I display an image from a file in Jupyter Notebook? (0) | 2021.02.11 |
파이썬 Start IDLE with python 3 on Linux (python 2.7 installed alongside) (0) | 2021.02.11 |
파이썬 Python find x value to corresponding max y value in plot (0) | 2021.02.11 |
파이썬 Print Combining Strings and Numbers (0) | 2021.02.10 |
댓글