- Python标准库--glob
- Python好的文章A Python Interpreter Written in Python
- Python代码片段
- Python读书--Python cookbook
- Python框架相关--flask CBV FBV
- Python项目相关--Build a RESTful API with Flask – The TDD Way
- Python之外--计算机系统要素
python标准库 glob
- basic
import glob
for name in sorted(glob.glob('dir/*')):
print(name)
for name in sorted(glob.glob('dir/file?.txt')):
print(name)
for name in sorted(glob.glob('dir/*[0-9].*')):
print(name)