time.asctime([t]))
t -- 這是9個元素或struct_time表示,由gmtime()和localtime() 函式返回的時間的元組。
此方法返回以下形式的24個字元的字串: 'Tue Feb 17 23:21:05 2009'.
#!/usr/bin/python3 import time t = time.localtime() print ("asctime : ",time.asctime(t))
asctime : Mon Feb 15 09:46:24 2016