Time mktime() Method in Python 3
Syntax
time.mktime(t)
|
Parameters
t - This is the struct_time or full 9-tuple.
Return Value
This method returns a floating point number, for
compatibility with time().
Example
time.mktime(t)
|