Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas Period.second
属性返回一个整数值,该整数值表示给定“期间”对象中的秒数。
用法: Period.second
参数:没有
返回:秒
范例1:采用Period.second
属性以查找给定Period对象中存在的秒数。
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='S', year = 2000, month = 2, day = 22,
hour = 8, minute = 21, second = 24)
# Print the Period object
print(prd)
输出:
现在我们将使用Period.second
属性以查找给定期间对象中的秒数。
# return the number of seconds
prd.second
输出:
正如我们在输出中看到的,Period.second
属性已返回24,指示prd对象中的秒数为24。
范例2:采用Period.second
属性以查找给定Period对象中存在的秒数。
# importing pandas as pd
import pandas as pd
# Create the Period object
prd = pd.Period(freq ='S', year = 2006, month = 10,
hour = 15, minute = 49, second = 17)
# Print the Period object
print(prd)
输出:
现在我们将使用Period.second
属性以查找给定期间对象中的秒数。
# return the number of seconds
prd.second
输出:
正如我们在输出中看到的,Period.second
属性已返回17,指示prd对象中的秒数为17。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Timestamp.tz用法及代码示例
- Python Pandas Series.str.contains()用法及代码示例
- Python Pandas dataframe.std()用法及代码示例
- Python Pandas Timestamp.dst用法及代码示例
- Python Pandas dataframe.sem()用法及代码示例
- Python Pandas DataFrame.ix[ ]用法及代码示例
- Python Pandas.Categorical()用法及代码示例
- Python Pandas.apply()用法及代码示例
- Python Pandas TimedeltaIndex.contains用法及代码示例
- Python Pandas Timestamp.now用法及代码示例
- Python Pandas Series.str.pad()用法及代码示例
- Python Pandas Series.take()用法及代码示例
- Python Pandas dataframe.all()用法及代码示例
- Python Pandas series.str.get()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Period.second。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。