Time asctime() Method in Python 3
The method asctime() converts a tuple or struct_time
representing a time as returned by gmtime() or localtime() to a 24-character string of
the following form: 'Sun Mar 11 10:21:25 2018'.
Syntax
time.asctime([t]))
|
Parameters
t - This is a tuple of 9 elements or struct_time
representing a time as returned by gmtime() or localtime() function.
Return Value
This method returns 24-character string of the
following form: ' Sun Mar 11
10:21:25 2018'.
Example
#!/usr/bin/python3
import
time
t =
time.localtime()
print
("asctime : ",time.asctime(t))
|
When we run the above program, it produces the
following result
asctime:
Sun Mar 11 10:24:04 2018
|