Remove punctuation characters from a string
Level: Beginner (score: 2)
Complete remove_punctuation
which receives an input string and strips out all punctuation characters (!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~
).
Return the resulting string. You can go full loop, list comprehension or maybe some nice stdlib functionality?