Python time asctime()方法
Python time asctime()方法
Python time asctime() 函數(shù)接受時(shí)間元組并返回一個(gè)可讀的形式為"Tue Dec 11 18:07:14 2008"(2008年12月11日 周二18時(shí)07分14秒)的24個(gè)字符的字符串。
語法
asctime()方法語法:
time.asctime([t]))
參數(shù)
- t -- 9個(gè)元素的元組或者通過函數(shù) gmtime() 或 localtime() 返回的時(shí)間值。
返回值
返回一個(gè)可讀的形式為"Tue Dec 11 18:07:14 2008"(2008年12月11日 周二18時(shí)07分14秒)的24個(gè)字符的字符串。
實(shí)例
以下實(shí)例展示了 asctime()函數(shù)的使用方法:
#!/usr/bin/python import time t = time.localtime() print "time.asctime(t): %s " % time.asctime(t)
以上實(shí)例輸出結(jié)果為:
time.asctime(t): Tue Feb 17 09:42:58 2009
相關(guān)文章
- Python 教程
- Python 簡(jiǎn)介
- Python 鏈表
- Python 隊(duì)列
- Python3 命名空間
- Python3 XML 解析
- Python exp() 函數(shù)
- Python min() 函數(shù)
- Python File writelines() 方法
- Python os.ftruncate() 方法
- Python os.listdir() 方法
- Python os.openpty() 方法
- Python os.pipe() 方法
- Python os.utime() 方法
- Python islower()方法
- Python isupper()方法
- Python List len()方法
- Python List index()方法
- Python 字典 Dictionary cmp()方法
- Python Tuple 元組 min()方法