Python|熊猫时期.strftime
Python是一种用于进行数据分析的出色语言,主要是因为以数据为中心的Python包的奇妙生态系统。 Pandas就是其中之一,它使导入和分析数据变得更加容易。
Pandas Period.strftime()
函数根据所选格式返回 Period 的字符串表示形式。格式必须是包含一个或多个指令的字符串。该方法识别与标准Python发行版的time.strftime()
函数相同的指令,以及特定的附加指令 %f、%F、%q。 (最初来自 scikits.timeries 的格式和文档)
Syntax : Period.strftime()
Parameters : format
Return : string
示例 #1:使用Period.strftime()
函数以指定格式返回给定期间的值。
# 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.strftime()
函数以 ('%b. %d, %Y was a %A') 格式返回给定的期间。
注意: '%b'
是月份名称, %d
是月份中的日期, %Y
是年份, %A
是工作日名称。
# return the period in specified format.
prd.strftime('% b. % d, % Y was a % A')
输出 :
正如我们在输出中看到的, Period.strftime()
函数以指定格式返回给定周期的值。示例 #2:使用Period.strftime()
函数以指定格式返回给定期间的值。
# 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 object
print(prd)
输出 :
现在我们将使用Period.strftime()
函数以 ('%b-%Y') 格式返回给定的期间。
注意: '%b'
是月份名称, %Y
是年份
# return the period in specified format.
prd.strftime('% b-% Y')
输出 :
正如我们在输出中看到的, Period.strftime()
函数以指定格式返回给定周期的值。