python convert date string to universal timestamp integer code example
Example 1: convert into date python
from datetime import datetime
datetime_str = '09/19/18 13:55:26'
datetime_object = datetime.strptime(datetime_str, '%m/%d/%y %H:%M:%S')
print(type(datetime_object))
print(datetime_object) # printed in default format
Example 2: convert to timestamp python
import datetime
date = '18/05/2020 - 18:05:12'
# convert string to datetimeformat
date = datetime.datetime.strptime(date, "%d %m %Y - %H:%M:%S"")
# convert datetime to timestamp
date = datetime.datetime.timestamp(date)
Example 3: get timestamp from string python
import datetime
date = '18/05/2020 - 18:05:12'
# convert string to datetimeformat
date = datetime.datetime.strptime(date, "%d %m %Y - %H:%M:%S")
# convert datetime to timestamp
date = datetime.datetime.timestamp(date)