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