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


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


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

Pandas Timestamp.month属性用于在给定的Timestamp对象中查找月份值。

用法: Timestamp.month

参数:没有

返回:

范例1:采用Timestamp.month属性以在给定的Timestamp对象中查找月份值。

# importing pandas as pd 
import pandas as pd 
  
# Create the Timestamp object 
ts = pd.Timestamp(2016, 1, 1, 12, 25, 16, 28) 
  
# Print the Timestamp object 
print(ts)

输出:

现在我们将使用Timestamp.month属性以在ts对象中打印month的值。

# find the value of month  
ts.month

输出:

正如我们在输出中看到的,Timestamp.month属性已返回1,表示ts对象中的month值设置为1。

范例2:采用Timestamp.month属性以在给定的Timestamp对象中查找月份值。

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

输出:


现在我们将使用Timestamp.month属性以在ts对象中打印month的值。

# find the value of month  
ts.month

输出:

正如我们在输出中看到的,Timestamp.month属性已返回5,表示ts对象中的month值设置为5。



相关用法


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