I need to convert string type Wed, 18 May 2016 11:21:35 GMT to timestamp, in Python. I'm using:
datetime.datetime.strptime(string, format)
But I don't want to specify the format for the date type.
I need to convert string type Wed, 18 May 2016 11:21:35 GMT to timestamp, in Python. I'm using:
datetime.datetime.strptime(string, format)
But I don't want to specify the format for the date type.