mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-03-14 10:46:14 +01:00
11 lines
No EOL
220 B
Python
11 lines
No EOL
220 B
Python
|
|
import os
|
|
parent_dir = os.getcwd()
|
|
|
|
|
|
for i in range(21, 51):
|
|
os.chdir(os.path.join(parent_dir, str(i)))
|
|
open("quest.txt", "w")
|
|
open("correct.txt", "w")
|
|
open("wrong.txt", "w")
|
|
open("wrong 2.txt", "w") |