📜  Python|熊猫 DatetimeIndex.second

📅  最后修改于: 2022-05-13 01:55:07.977000             🧑  作者: Mango

Python|熊猫 DatetimeIndex.second

Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。

Pandas DatetimeIndex.second属性输出一个 Index 对象,其中包含 DatetimeIndex 对象的每个条目中存在的第二个值。

示例 #1:使用DatetimeIndex.second属性查找 DatetimeIndex 对象中存在的秒值。

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
didx = pd.DatetimeIndex(['2000-01-10 06:30:05', '2000-01-10 07:30:10',
                                                '2000-01-10 08:30:15'])
  
# Print the DatetimeIndex
print(didx)

输出 :

现在我们要查找 DatetimeIndex 对象中存在的所有秒值。

# find all the second values present in the object didx.second

输出 :

正如我们在输出中看到的,该函数返回了一个 Index 对象,其中包含 DatetimeIndex 对象的每个条目中存在的第二个值。这里 5、10 和 15 是 DatetimeIndex 对象条目中的第二个值。示例 #2:使用DatetimeIndex.second属性查找 DatetimeIndex 对象中存在的秒值。

# importing pandas as pd
import pandas as pd
  
# Create the DatetimeIndex
# Here 'S' represents secondly frequency 
didx = pd.DatetimeIndex(start ='2014-08-01 10:05:45', freq ='S', 
                              periods = 5, tz ='Asia/Calcutta')
  
# Print the DatetimeIndex
print(didx)

输出 :

现在我们要查找 DatetimeIndex 对象中存在的所有秒值。

# find all the second values present in the object
didx.second

输出 :

正如我们在输出中看到的,该函数返回了一个 Index 对象,其中包含 DatetimeIndex 对象的每个条目中存在的第二个值。