I have a list of names like this:
['Albert Einstein', 'Benjamin Franklin', 'J. Edgar Hoover',....]
And a list of date-times:
[datetime.date(1642, 12, 25), datetime.date(1879, 3, 14), datetime.date(1706, 1, 17),.....]
now I'm trying to add them together in between of each other like this in a new list:
[('Albert Einstein', datetime.date(1879, 3, 14)),...
Nothing I tried seem to work. It also doesn't seem possible to me with append or extend, hope someone can help me.