Posts by Deivid Luduvico Andrade • 11 points
1 post
-
1
votes2
answers10008
viewsA: how to remove n from a python string
Simple, just use the function that removes control characters that are rstrip() right. Then in practice it would be: SuaString = SuaString.rstrip() Ready, now your string will no longer have the…