python-tutorialsmade

How to get Unix Timestamp in Python

To print timestamp in Python is very simple, all you have to do is, import the time library and call the time() function to get the timestamp.

But the problem most of us facing is where it will return a float result like this:

To get the actual Unix timestamp, just type cast the float value into int()

the result is,

 

Related Posts

Leave a Reply