mirror of
https://github.com/osmarks/random-stuff
synced 2025-01-18 21:23:04 +00:00
6 lines
161 B
Python
6 lines
161 B
Python
import os
|
|
import os.path
|
|
|
|
for person in os.listdir("people"):
|
|
for submission in os.listdir(os.path.join("people", person)):
|
|
print(person, submission) |