mirror of
https://github.com/osmarks/random-stuff
synced 2024-11-08 13:39:53 +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)
|