I have a web form which has 2 input fields, \"StartDate\" and \"StartTime\". I convert the StartDate field\'s string into a Python datetime object
StartDate
datetime
import datetime def time_tango(date, time): return datetime.datetime.combine(date, time)