I am looking for a way to plot temperature over datetime. The problem is that I have datetime as date in the format [(datetime.date(2020, 4, 3),), (datetime.date(2020, 4, 3),)] and a corresponding timedelta in the format [(datetime.timedelta(0, 27751),), (datetime.timedelta(0, 27761),)]. A datetime.date / datetime.timedelta object in a tuple in a list. Can someone help me to find a propper solution with getting a datetime from the date and the timedelta?
Thanks in advance!