New to Python and, programming as a whole, and not completely sure if this is possible but is there a way to create a "number" of lists based on an inputted "number"?
Code should function as follows:
- Ask user how many lists they want to create (Ex. user types 3)
- Code will create three separate lists (Ex. list1 = [], list2 = [], list3 = [])
Note: I need lists specifically. No dictionaries, global, etc.