+ 1
What is the use of empty lists in python?
empty_list [] print (empty_list)
3 Answers
+ 2
you can append to them later:
empty_list.append(3) for example
0
you can append the items when you needed
0
when you need a list before be add values.
empty_list [] print (empty_list)