當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python calendar setfirstweekday()用法及代碼示例


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 Module | setfirstweekday() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。