Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一个可以找出任何日期的程序。我所知道的是:(4/4、6/6、8/8、10/10、12/12 和 2 月的最后一天)即将到来。2012 年所有这些日期都在星期三
你要date.weekday()
date.weekday()
date(2002, 12, 4).weekday() == 2
这表明 2002 年 12 月 4 日是一个星期三。
星期几是一个整数,其中星期一为 0,星期日为 6。
http://docs.python.org/2/library/datetime.html
一个班轮:
date(2012, 4, 4).strftime('%A') >>> Wednesday