I have two lists.
d1 = ["'02/01/2018'", "'01/01/2018'", "'12/01/2017'"]
d2 = ["'02/28/2018'", "'01/31/2018'", "'12/31/2017'"]
I am trying to get these values to be unpacked in a for loop.
for i,y in d1,d2:
i,y = Startdate, Enddate
I realize this iteration will overwrite the values for Startdate and Enddate with each iteration but for now i'm just trying to successfully unpack the elements of each list.
I get the following error:
too many values to unpack (expected 2)
I thought I was unpacking 2? (d1 and d2)