I just started using python and I am trying to initialize two lists using list comprehensions. Like this
list1 = list2 = [0.0] * 57
When i do
The first one sets list1 and list2 to both refer to the same list. The second one defines a new list for each name.
list1
list2