import os
year=2020
for month in range(1,13):
filename='{}.{}'.format(year,month)
os.mkdir(filename)
print(filename+'file created.')
import os
year=2020
for month in range(1,13):
filename='{}.{}'.format(year,month)
os.mkdir(filename)
print(filename+'file created.')
相关文章: