variables
free_time = (int)input("How much free time do you have? ->").strip()
num_activties = (int)input("How many activities would you like to spend your free time on? ->").strip()
How would I go about asking the user to fill out x amount of variables based on the number they input in num_activies
?