Python Pandas Period.year
Python是一种进行数据分析的伟大语言,主要是因为以数据为中心的Python包的奇妙生态系统。Pandas就是这些包中的一个,它使导入和分析数据变得更加容易。
Pandas的Period.year属性返回一个整数值,代表给定时期所在的年份。
语法 : Period.year
参数:无
回报率:年
例子#1:使用Period.year属性来查找给定的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.year属性来查找年份的值
# return the year value
prd.year
输出 :

正如我们在输出中看到的,Period.year属性返回了2000,表明给定的时期位于2000年。
示例#2:使用Period.year属性来查找给定的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.year属性来查找年份的值
# return the year
prd.year
输出 :

正如我们在输出中看到的,Period.year属性返回了2006,表明给定的时期位于2006年。
极客教程