x=int(input("put your age: "))
y=2020-x
n=1
import os
os.mkdir("C://Users/Mziko/Desktop/Age")
while n<=y:
file2 = open(str(n) + ".txt", "w")
n += 1
file2.close()
I have to let user put his/her age and then I need create a folder where I'd add txt filed based on his/her age. Like 1.txt 2.txt 3.txt ...