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


Python calendar iterweekdays()用法及代码示例


日历模块允许输出类似于程序的日历,并提供与日历相关的其他有用函数。 “日历”模块中定义的函数和类使用理想化的日历,当前的公历日历在两个方向上都无限期扩展。

iterweekdays()方法返回将用于一周的星期几的迭代器。迭代器的第一个数字将与firstweekday()返回的数字相同。

用法: iterweekdays()
参数: no parameter
返回: iterator for the week day numbers

代码1:


# Python program to demonstrate working 
# of iterweekdays() method 
  
# importing calendar module 
import calendar 
  
# providing firstweekday = 0 
obj = calendar.Calendar(firstweekday = 0) 
  
for day in obj.iterweekdays():
    print(day)

输出:

0
1
2
3
4
5
6


代码2:

# Python program to demonstrate working 
# of iterweekdays() method 
  
# importing calendar module 
import calendar 
  
# providing firstweekday = 2 
obj = calendar.Calendar(firstweekday = 2) 
  
for day in obj.iterweekdays():
    print(day)

输出:

2
3
4
5
6
0
1


相关用法


注:本文由纯净天空筛选整理自Shivam_k大神的英文原创作品 Python calendar module | iterweekdays() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。