Python3 Mktime 方法 Python3 Localtime 方法 Python3 id运算符 Python3 Mktime 方法 #!/usr/bin/python3 import time t = (2016, 2, 15, 10, 13, 38, 1, 48, 0) d = time.mktime(t) print ("time.mktime(t) : %f" % d) print ("asctime(localtime(secs)): %s" % time.asctime(time.localtime(d))) Python3 Localtime 方法 Python3 id运算符