1
0
mirror of https://github.com/osmarks/random-stuff synced 2025-07-01 17:22:49 +00:00
2023-06-19 14:09:54 +01:00

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)