當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas DatetimeIndex.second用法及代碼示例


Python是進行數據分析的一種出色語言,主要是因為以數據為中心的python軟件包具有奇妙的生態係統。 Pandas是其中的一種,使導入和分析數據更加容易。

Pandas DatetimeIndex.second屬性輸出一個Index對象,其中包含存在於DatetimeIndex對象的每個條目中的第二個值。

用法: DatetimeIndex.second

返回:索引包含秒。

範例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對象中存在的所有秒值。

<div class="noIdeBtnDiv"> 
# find all the second values present in the object 
didx.second

注:本文由純淨天空篩選整理自 Python | Pandas DatetimeIndex.second。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。