I am attempting to add two series in a dataframe in pandas with the first series being a 24-hr time value (e.g. 17:30) exported from an excel file and the second series bein
Try this:
import datetime as dt df["end_Time"] = df["Start_Time"] + df["Delta"].map(dt.timedelta)