time.ctime([secs])
Convert a time expressed in seconds since the epoch to a string representing local time. If secs is not provided or None
, the current time as returned by time()
is used. ctime(secs)
is equivalent to asctime(localtime(secs))
. Locale information is not used by ctime()
.
Please login to continue.