Answers for "pandas combine dates and hours"

2

pd combine date time

If df.Date and df.Time are of type str:
pd.to_datetime(df.Date + ' ' + df.Time)

If df.Date and df.Time are of type datetime.date and datetime.time respectively:
pd.to_datetime(df.Date.astype(str) + ' ' + df.Time.astype(str))
Posted by: Guest on April-28-2021

Code answers related to "pandas combine dates and hours"

Python Answers by Framework

Browse Popular Code Answers by Language