Comment supprimer la virgule d'une chaîne Python telle que Foo, bar
? J'ai essayé 'Foo, bar'.strip(',')
mais cela n'a pas fonctionné.
Réponses
Trop de publicités?
Schoolboy
Points
3489
Utilisation replace
des chaînes de caractères non strip
:
s = s.replace(',','')
Un exemple :
>>> 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
actor2019
Points
145
Shal
Points
11
Tauno Erik
Points
1