반응형
문자열, 양쪽 끝, 단어 사이의 모든 공백을 제거하고 싶습니다.
이 Python 코드가 있습니다.
def my_handle(self):
sentence = ' hello apple '
sentence.strip()
그러나 이것은 문자열 양쪽의 공백 만 제거합니다. 모든 공백을 어떻게 제거합니까?
해결 방법
sentence = ' hello apple'
sentence.strip()
>>> 'hello apple'
sentence = ' hello apple'
sentence.replace(" ", "")
>>> 'helloapple'
sentence = ' hello apple'
" ".join(sentence.split())
>>> 'hello apple'
참조 페이지 https://stackoverflow.com/questions/8270092
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python argparse command line flags without arguments (0) | 2020.09.23 |
---|---|
파이썬 Syntax error on print with Python 3 (0) | 2020.09.23 |
파이썬에서 사용 가능한 모든 드라이브 문자를 나열하는 방법이 있습니까? (0) | 2020.09.23 |
파이썬 Python 3에서 Python 2와 마찬가지로 __cmp__ 메서드를 사용할 수없는 이유는 무엇입니까? (0) | 2020.09.23 |
파이썬으로 커브 피팅 (0) | 2020.09.23 |
댓글