Entfernen Sie Speicherzeichen von String in Python
>>> " hello apple ".replace(" ", "")
'helloapple'
Tan MH
>>> " hello apple ".replace(" ", "")
'helloapple'