Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from fnmatch import fnmatch, fnmatchcase
- print(fnmatch('usuarios.txt', '*.txt'))
- print(fnmatch('usuarios.txt', 'usuari??.txt'))
- print(fnmatch('Datos2017.csv', 'Datos[0-9]*'))
- archivos = ['Datos2017.csv', 'Datos1999.csv', 'init.json', 'parser.py']
- print([archivo for archivo in archivos if fnmatch(archivo, 'Datos[0-9]*.csv')])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement