IT Share you

파이썬 문자열에서 쉼표를 제거하는 방법

shareyou 2020. 12. 10. 21:28
반응형

파이썬 문자열에서 쉼표를 제거하는 방법


다음과 같은 파이썬 문자열에서 쉼표를 어떻게 제거 할 수 Foo, bar있습니까? 시도 'Foo, bar'.strip(',')했지만 작동하지 않았습니다.


원하는 것이 replace아니라 원하는 strip것입니다.

s = s.replace(',', '')

다음이 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

unicode('foo,bar').translate(dict([[ord(char), u''] for char in u',']))


이것은 텍스트에서 모든 쉼표를 제거하고 왼쪽 정렬합니다.

for row in inputfile:
    place = row['your_row_number_here].strip(', ')

참고 URL : https://stackoverflow.com/questions/16233593/how-to-strip-comma-in-python-string

반응형