“hapus n dari textpython” Kode Jawaban

Python menghapus n dari string

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

hapus n dari string python

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

hapus n dari 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 cara menghapus n dari string

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

Jawaban yang mirip dengan “hapus n dari textpython”

Pertanyaan yang mirip dengan “hapus n dari textpython”

Lebih banyak jawaban terkait untuk “hapus n dari textpython” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya