Hello dear readers! Welcome back to another edition of our tutorial on Python. In this tutorial guide, we are going to be studying about the Python Time mktime() method.
Python Time mktime() method is opposite method of localtime(). Its argument is the full 9 tuple or the struct_time. It returns a floating point number, for compatibility with time().
If in any condition the input value cannot be represented as a valid time, then either an OverflowError or ValueError will be raised.
Python Time mktime() method is opposite method of localtime(). Its argument is the full 9 tuple or the struct_time. It returns a floating point number, for compatibility with time().
If in any condition the input value cannot be represented as a valid time, then either an OverflowError or ValueError will be raised.
Syntax
Following below is the syntax for the Python Time mktime() method -
time.mktime( t )
RECOMMENDED POST: Python Time localtime() Method with example
Parameter Details
- t - The tuple of 9 elements or struct_time.
Return Value
It returns a floating point number for compatibility with time().
Example
The following below is a simple example -
#!/usr/bin/python import time t = (2020, 7, 15, 17, 3, 38, 1, 48, 0) secs = time.mktime( t ) print "time.mktime(t) : %f" % secs print "asctime(localtime(secs)): %s" % time.asctime(time.localtime(secs))
Output
Below is the output of the above example -
time.mktime(t) : 1234890218.000000 asctime(localtime(secs)): Wed Jul 15 17:03:38 2020
RECOMMENDED POST: Python Time gmtime() Method with example
Alright guys! This is where we are rounding up for this tutorial post. In our next tutorial, we are going to be studying about the Python Time sleep() method.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.