“Python String entfernen Sie Weißespace” Code-Antworten

Trimmräume in Saitenpython

a = "      yo!      "
b = a.strip() # this will remove the white spaces that are leading and trailing
Super Stoat

Entfernen Sie alle Whitespace aus String Python

import re
s = '\n \t this is a string   with a lot of whitespace\t'
s = re.sub('\s+', '', s)
Helpful Hippopotamus

Python löschen weiße Räume

sentence = ' hello  apple'
sentence.strip()
>>> 'hello  apple'
Proud Polecat

Entfernen Sie zusätzliche Räume Python

>>> import re
>>> re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Worrisome Weasel

Python entfernen Sie die Whitespace von Beginn der Saite

'     hello world!    '.strip()
'hello world!'


'     hello world!    '.lstrip()
'hello world!    '

'     hello world!    '.rstrip()
'    hello world!'
Breakable Buffalo

Python String entfernen Sie Weißespace

' sss d ssd s'.replace(" ", "")
# output: 'sssdssds' 
David Diamant

Ähnliche Antworten wie “Python String entfernen Sie Weißespace”

Fragen ähnlich wie “Python String entfernen Sie Weißespace”

Weitere verwandte Antworten zu “Python String entfernen Sie Weißespace” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen