5 lines
113 B
Python
5 lines
113 B
Python
def create_day_files():
|
|
for i in range(1,25):
|
|
f = open(f"inputs/day{i}.txt", "a")
|
|
|
|
create_day_files() |