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


Python Pandas Period.weekofyear用法及代码示例


Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。

Pandas Period.weekofyear属性返回一个整数值,该整数值是给定Period对象的一年中的第几周。

用法: Period.weekofyear

参数:没有

返回:一年中的第几周

范例1:采用Period.weekofyear 属性以查找给定Period对象的星期数。

# importing pandas as pd 
import pandas as pd 
  
# Create the Period object 
prd = pd.Period(freq ='S', year = 2000, month = 2,  
                  day = 21, hour = 8, minute = 21) 
  
# Print the Period object 
print(prd)

输出:

现在我们将使用Period.weekofyear属性以查找一年中的第几周

# return week number for the year 
prd.weekofyear

输出:

正如我们在输出中看到的,Period.weekofyear 属性已返回8,指示prd对象中的时间段位于一年中的第8周。

范例2:采用Period.weekofyear属性以查找给定Period对象的星期数。

# importing pandas as pd 
import pandas as pd 
  
# Create the Period object 
prd = pd.Period(freq ='T', year = 2006, month = 10, 
                            hour = 15, minute = 49) 
  
# Print the Period object 
print(prd)

输出:


现在我们将使用Period.weekofyear属性以查找一年中的第几周

# return week number for the year 
prd.weekofyear

输出:

正如我们在输出中看到的,Period.weekofyear 属性已返回39,指示prd对象中的时间段位于一年的第39周。



相关用法


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