python日歷模塊
Python calendar.firstweekday()方法 (Python calendar.firstweekday() Method)
firstweekday() method is an inbuilt method of the calendar module in Python. It works on simple text calendars and returns the current setting for the weekday to start each week.
firstweekday()方法是Python中日歷模塊的內置方法。 它適用于簡單的文本日歷,并返回每個星期開始的工作日的當前設置。
Module:
模塊:
import calendar
Syntax:
句法:
firstweekday()
Parameter(s):
參數:
None
沒有
Return value:
返回值:
The function returns a number from 0 to 6 where Monday indicates 0 and so on.
該函數返回從0到6的數字,其中星期一表示0,依此類推。
Example:
例:
# Python program to illustrate the
# use of firstweekday() method
# importing calendar module
import calendar
# using setfirstweekday() function
calendar.setfirstweekday(2)
print(calendar.firstweekday())
print()
val = calendar.setfirstweekday(calendar.FRIDAY)
# sets the value to 4 which is the weekday value for FRIDAY
print(calendar.firstweekday())
# prints 4
print()
# Printing 3rd month of 2020
calendar.setfirstweekday(calendar.THURSDAY)
print("Third month of 2020:")
calendar.prmonth(2020, 3, 2, 1)
# It starts displaying the calendar from THURSDAY
print("The first weekday of the third month of 2020 is:", calendar.firstweekday())
Output
輸出量
2
4
Third month of 2020:
March 2020
Th Fr Sa Su Mo Tu We
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
The first weekday of the third month of 2020 i
s: 3
翻譯自: https://www.includehelp.com/python/calendar-firstweekday-method-with-example.aspx
python日歷模塊