Timestamp to datetime
Last updated
Was this helpful?
Last updated
Was this helpful?
In this article, you will learn to convert timestamp to datetime object and datetime object to timestamp (with the help of examples).
It's pretty common to store date and time as a timestamp in a database. A Unix timestamp is the number of seconds between a particular date and January 1, 1970 at UTC.
When you run the program, the output will be:
Here, we have imported datetime
class from the module. Then, we used datetime.fromtimestamp()
classmethod which returns the local date and time (datetime object). This object is stored in dt_object variable.
Note: You can easily create a string representing date and time from a datetime
object using method.
You can get timestamp from a datetime object using datetime.timestamp()
method.