Point out the correct statement.Select one:a. Timedeltas are differences in times, expressed in difference unitsb. You can construct a Timedelta scalar through various argumentc. DateOffsets cannot be used in construction code example
Example: timedelta64 total_mins
import datetime
def minutes(date_time_older, date_time_newer):
date_time_difference = round((date_time_newer-date_time_older).total_seconds()/60)
return date_time_difference