dataframe how to substruct 2 dates

Solutions on MaxInterview for dataframe how to substruct 2 dates by the best coders in the world

showing results for - "dataframe how to substruct 2 dates"
Swan
30 May 2018
1df_test['Difference'] = (df_test['First_Date'] - df_test['Second Date']).dt.days
2