Say I have a datetime string created form a datetime input in html as:
"2020-11-27T16:18"
How would I convert this to a datetime object in python:
string_date = "2020-11-27T16:18"
datetime_object = ????
Is there a specific way to format this date into a datetime object in python?