28.10.2021 Views

Python Tutorial ( PDFDrive )

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

time.localtime([secs])

Description

The method localtime() is similar to gmtime() but it converts number of seconds to local time. If secs is not

provided or None, the current time as returned by time() is used. The dst flag is set to 1 when DST applies to the

given time.

Syntax

Following is the syntax for localtime() method:

time.localtime([ sec ])

Parameters

• sec -- These are the number of seconds to be converted into structure struct_time representation.

Return Value

This method does not return any value.

Example

The following example shows the usage of localtime() method.

#!/usr/bin/python

import time

print "time.localtime() : %s" % time.localtime()

Let us compile and run the above program, this will produce the following result:

time.localtime() : time.struct_time(tm_year=2013, tm_mon=4, tm_mday=28, tm_hour=5,

tm_min=28, tm_sec=41, tm_wday=6, tm_yday=118, tm_isdst=0)

time.mktime(tupletime)

Description

The method mktime() is the inverse function of localtime(). Its argument is the struct_time or full 9-tuple and it

returns a floating point number, for compatibility with time().

If the input value cannot be represented as a valid time, either OverflowError or ValueError will be raised.

Syntax

Following is the syntax for mktime() method:

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().

TUTORIALS POINT

Simply Easy Learning

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!