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

다음과 같은 파이썬 문자열에서 쉼표를 어떻게 제거 할 수 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(', ')


‎‎‎‎‎
‎‎‎‎‎‎


답변