I'm new to python and I've seen two different ways to initialize an empty list:
# way 1
empty_list = []
# way 2
other_empty_list = list()
Is there a "preferred" way to do it? Maybe one way is better for certain conditions than the other?
Thank you