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 71 times
2

Zero Piraeus
- 56,143
- 27
- 150
- 160
-
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