“Удалить n из Textpython” Ответ

Python удаляет n из строки

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

Удалить n с String Python

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

Удалить n из 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, как удалить n из строки

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

Ответы похожие на “Удалить n из Textpython”

Вопросы похожие на “Удалить n из Textpython”

Больше похожих ответов на “Удалить n из Textpython” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования