다음과 같은 파이썬 문자열에서 쉼표를 어떻게 제거 할 수 Foo, bar
있습니까? 시도 'Foo, bar'.strip(',')
했지만 작동하지 않았습니다.
답변:
다음이 replace
아닌 문자열 사용 방법 strip
:
s = s.replace(',','')
예 :
>>> s = 'Foo, bar'
>>> s.replace(',',' ')
'Foo bar'
>>> s.replace(',','')
'Foo bar'
>>> s.strip(',') # clears the ','s at the start and end of the string which there are none
'Foo, bar'
>>> s.strip(',') == s
True
s = re.sub(',','', s)
;)