I would like to convert strings with format like 2018-10-15T06:42:17.055476324Z to Unix Epoch format. So it will just be an integer of seconds. How to do this in Python3?
Asked
Active
Viewed 69 times
2
Zero Piraeus
- 52,181
- 26
- 146
- 158
-
1I'm sure that a quick search on any search engine will point you in the right direction. Please make an effort before posting a question. – JoSSte Oct 15 '18 at 06:57
-
Python comes with batteries included: see the `datetime` and `time` modules. – ForceBru Oct 15 '18 at 06:57