python: le nettoyage d'une chaîne

j'ai une chaîne comme celle-ci

somestring='in this/string /i have many. interesting.occurrences of {different chars} that need     to .be removed  '

voici le résultat que je veux:

somestring='in this string i have many interesting occurrences of different chars that need to be removed'

j'ai commencé à faire manuellement toutes sortes de .replace, mais il y a tellement de combinaisons différentes qui, je pense, il doit y avoir un moyen plus simple. peut-être il y a une bibliothèque qui fait déjà cela?

personne ne sait comment je peux nettoyer ce string>?