Liste tous les fichiers commençant par Python

import os
prefixed = [filename for filename in os.listdir('.') if filename.startswith("prefix")]
Demo Can