“Löschen Sie N aus TextPython” Code-Antworten

Python entfernt n aus String

line = line.strip('\n')
line = line.strip('\t')
Awful Albatross

Entfernen Sie N aus String Python

a_string = a_string.rstrip("\n")
Faithful Flamingo

Löschen Sie N aus TextPython

# Remove all line breaks from a long string of text

mystr = 'hello world, how do i enter line breaks?'
>>> mystr.replace(' ', '')
'helloworld,howdoienterlinebreaks?'

# You can also replace more then one thing for example:
mystring = mystring.replace('\n', ' ').replace('\r', '')
Repulsive Raven

Python wie man n aus String entfernt

mylist = []
# Assuming that you have loaded data into a lines variable. 
for line in lines:
    mylist.append(line.strip().split('\t')
Fancy Fly

Ähnliche Antworten wie “Löschen Sie N aus TextPython”

Fragen ähnlich wie “Löschen Sie N aus TextPython”

Weitere verwandte Antworten zu “Löschen Sie N aus TextPython” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen