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


Python Pandas Timestamp.year用法及代码示例


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

Pandas Timestamp.year属性返回给定Timestamp对象中的日期所在的年份。

用法: Timestamp.year

参数:没有

返回:

范例1:采用Timestamp.year属性以查找给定Timestamp对象中存在的日期所在的年份。

# importing pandas as pd 
import pandas as pd 
  
# Create the Timestamp object 
ts = pd.Timestamp(year = 2011,  month = 11, day = 21, 
           hour = 10, second = 49, tz = 'US/Central') 
  
# Print the Timestamp object 
print(ts)

输出:

现在我们将使用Timestamp.year属性以查找日期的年份值。

# return the year 
ts.year

输出:

正如我们在输出中看到的,Timestamp.year属性已返回2011,表示Give Timestamp对象中日期的年值为2011。

范例2:采用Timestamp.year属性以查找给定Timestamp对象中存在的日期所在的年份。


# importing pandas as pd 
import pandas as pd 
  
# Create the Timestamp object 
ts = pd.Timestamp(year = 2009,  month = 5, day = 31,  
        hour = 4, second = 49, tz = 'Europe/Berlin') 
  
# Print the Timestamp object 
print(ts)

输出:

现在我们将使用Timestamp.year属性以查找日期的年份值。

# return the year 
ts.year

输出:

正如我们在输出中看到的,Timestamp.year属性已返回2009,表示Give Timestamp对象中日期的年值为2009。



相关用法


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