I want to create an empty list and append some values inside this list. So far I know that if I want to create and empty list I can do it either like this:
list1 = []
or like this:
list1 = list()
(My apologies if there is another way that currently I don't know)
My question at this point is if there is a difference between those two ways to create a list; in terms of efficiency for example.
Thank you in advance for your help.