Dec-17-2019, 12:23 AM
I need to create a directory, then create 24 more directories within the main directory, then add 3 more numbered directories within the 24. This is what I have so far:
import os def main(): Directory = 'Notes' os.mkdir(Directory) Week = 'Week' os.makedirs() Day = ('Day 1', 'Day 2', 'Day 3')As you can see I cant figure out how to create the 24 'Week' directories within the main directory and number them.
