python removing n from string
line = line.strip('n')
line = line.strip('t')
python removing n from string
line = line.strip('n')
line = line.strip('t')
delete n from 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', '')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us