Python supprime la ponctuation d'une chaîne
# Python program to remove punctuation from a string
import string
text= 'Hello, W_orl$d#!'
# Using translate method
print(text.translate(str.maketrans('', '', string.punctuation)))
Gorgeous Gazelle