2014-10-19 64 views

回答

73

最終你要查看的日期時間記錄和熟悉的格式變量,但這裏有一些例子,讓你開始:

import datetime 

print('Timestamp: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now())) 
print('Timestamp: {:%Y-%b-%d %H:%M:%S}'.format(datetime.datetime.now())) 
print('Date now: %s' % datetime.datetime.now()) 
print('Date today: %s' % datetime.date.today()) 

today = datetime.date.today() 
print("Today's date is {:%b, %d %Y}".format(today)) 

schedule = '{:%b, %d %Y}'.format(today) + ' - 6 PM to 10 PM Pacific' 
schedule2 = '{:%B, %d %Y}'.format(today) + ' - 1 PM to 6 PM Central' 
print('Maintenance: %s' % schedule) 
print('Maintenance: %s' % schedule2) 

輸出:

時間戳:2014-10- 18 21點31分12秒

時間戳時間:2014年10月,18 21點31分12秒

現在日期:2014年10月18日21:31:12.318340

今天的日期:2014年10月18日

今天的日期是十月,18 2014

維護:十月18 2014 - 下午6點到晚上10點太平洋

維護:十月18 2014 - 下午1點至下午6點中央

參考鏈接:https://docs.python.org/3.4/library/datetime.html#strftime-strptime-behavior

12
>>> import time 
>>> print(time.strftime('%a %H:%M:%S')) 
Mon 06:23:14