How can I remove a trailing newline?

前端 未结 28 3607
感动是毒
感动是毒 2020-11-21 23:27

What is the Python equivalent of Perl\'s chomp function, which removes the last character of a string if it is a newline?

28条回答
  •  时光说笑
    2020-11-21 23:52

    s = s.rstrip()
    

    will remove all newlines at the end of the string s. The assignment is needed because rstrip returns a new string instead of modifying the original string.

提交回复
热议问题