python怎麼判斷星期幾

lotus_ruan發表於2021-09-11

python怎麼判斷星期幾

python程式設計操作日期時間主要用到的python模組是datetime和time這2個模組,time 模組主要包含各種提供日期、時間功能的類和函

數。該模組既提供了把日期、時間格式化為字串的功能,也提供了從字串恢復日期、時間的功能。

在 Python 的互動式直譯器中先匯入 time 模組,然後輸入 [e for e in dir(time) if not e.startswith('_')] 命令,即可看到該模組所包含的全部屬性和函式:

>>> [e for e in dir(time) if not e.startswith('_')]
['altzone', 'asctime', 'clock', 'ctime', 'daylight', 'get_clock_info', 'gmtime', 'localtime', 'mktime', 'monotonic',
 'perf_counter', 'process_time', 'sleep', 'strftime', 'strptime', 'struct_time', 'time', 'timezone', 'tzname']

獲取星期幾

from datetime import datetime, date
 
dayOfWeek = datetime.now().weekday()
print(dayOfWeek)
 
dayOfWeek = datetime.today().weekday()
print(dayOfWeek)

注意:datetime類的weekday()方法可以獲得datetime是星期幾,注意weekday()返回的是0~6,是星期一到星期日。

python獲取今日日期

import datetime
today = datetime.date.today()
print(today)

輸出:2019-06-25


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1762/viewspace-2835420/,如需轉載,請註明出處,否則將追究法律責任。

相關文章