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.
我做了这样的事情:
import datetime nb_blank_days = (int(datetime.date(year, month, 1).strftime('%w'))+6)%7
但我看起来不是很pythonic。有什么帮助吗?
目标是说因为 7 月 1 日是星期五,所以在显示第一个之前的一周有 4 个空白。
刚刚怎么样
datetime.date(year, month, 1).weekday()
由于0是星期一,我认为这可以满足您的要求。
0