5 lines
81 B
Python
5 lines
81 B
Python
from pathlib import Path
|
|
|
|
m = list(Path('.').rglob('*.py'))
|
|
for f in m:
|
|
print(f) |