0
How to write syntax for name list?
When I write name_creator_list = it says invalid syntax. Pls help
1 Answer
+ 1
name_creator_list=[]
that gives you an empty list that you can append to, or put names in from the start
name_creator_list=["Amy","Paul","John"]