Posts by Claudio • 111 points
1 post
-
10
votes5
answers9012
viewsQ: How to replace more than one character in the replace method in Python 3?
I have the text and need to remove all punctuation marks using just one method replace(), without using tie as well. My initial idea would be to use texto.replace('.', ''), this for each type of…