Python calendar.setfirstweekday() 方法
setfirstweekday() 方法是 Python 中日曆模塊的內置方法。它適用於簡單的文本日曆,並設置一周應該開始的第一個工作日。在這裏,星期一是 0,增加 1 到星期日,也就是 6。我們也可以使用calendar.day_name
在哪裏calendar.MONDAY
是 0 並且calendar.SUNDAY
是 6。
模塊:
import calendar
用法:
setfirstweekday(weekday)
參數:
weekday
: 可選參數,表示MONDAY為0,SUNDAY為6的工作日數,默認為0。
返回值:
這個方法的返回類型是<class 'NoneType'>
,它為星期幾設置一個迭代器。
例:
# Python program to illustrate the
# use of setfirstweekday() method
# importing calendar module
import calendar
# using setfirstweekday() function
val = calendar.setfirstweekday(2)
# returns None
print(val)
# The function does not return anything,
# it only sets the value
print()
val = calendar.setfirstweekday(calendar.WEDNESDAY)
# sets the value to 2 which is the weekday value
# for WEDNESDAY
print(val)
print()
# Using firstweekday() method to check what was
# the day sets
calendar.setfirstweekday(calendar.SUNDAY)
print(calendar.firstweekday())
# Prints 6 which is the weekday value for SUNDAY
輸出
None None 6
相關用法
- Python calendar firstweekday()用法及代碼示例
- Python calendar weekday()用法及代碼示例
- Python calendar isleap()用法及代碼示例
- Python calendar leapdays()用法及代碼示例
- Python calendar weekheader()用法及代碼示例
- Python calendar calendar()用法及代碼示例
- Python calendar monthcalendar()用法及代碼示例
- Python calendar month()用法及代碼示例
- Python calendar monthrange()用法及代碼示例
- Python calendar prmonth()用法及代碼示例
- Python calendar prcal()用法及代碼示例
- Python callable()用法及代碼示例
- Python string capwords()用法及代碼示例
- Python Functools cached_property()用法及代碼示例
- Python cmath.isclose()用法及代碼示例
- Python cmp()用法及代碼示例
- Python compile()用法及代碼示例
- Python cmath.log10()用法及代碼示例
- Python cmath.asinh()用法及代碼示例
- Python OpenCV cv2.rectangle()用法及代碼示例
注:本文由純淨天空篩選整理自 Python calendar Module | setfirstweekday() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。