“Usuń N z Textython” Kod odpowiedzi

Python Usuwanie \ n z ciągu

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

Usuń n z Python String

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

Usuń N z Textython

# 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 Jak usunąć n z ciągu

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

Odpowiedzi podobne do “Usuń N z Textython”

Pytania podobne do “Usuń N z Textython”

Więcej pokrewnych odpowiedzi na “Usuń N z Textython” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu