Python Créer un nom de fichier valide à partir de la chaîne
def cleanFilename(sourcestring, removestring =" %:/,.\\[]<>*?"):
#remove the undesireable characters
return ''.join([c for c in sourcestring if c not in removestring])
################################################################
KotreQ