当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。