Friday, January 30, 2026
HomeLanguagesPython | Pandas PeriodIndex.strftime

Python | Pandas PeriodIndex.strftime

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

Pandas PeriodIndex.strftime() function return an array of formatted strings specified by date_format, which supports the same string format as the python standard library.

Syntax : PeriodIndex.strftime(date_format)

Parameters :
date_format : date format string (e.g. “%Y-%m-%d”)

Return : ndarray of formatted strings

Example #1: Use PeriodIndex.strftime() function to print the given PeriodIndex object in the specified date_format.




# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start = '2004-11-11 02:45:21 ',
               end = '2021-5-21 8:45:29', freq = 'Y')
  
# Print the PeriodIndex object
print(pidx)


Output :

Now we will use the PeriodIndex.strftime() function to return the each period element in (‘%b. %d, %Y was a %A’) format.




# return the PeriodIndex in specified format
pidx.strftime('% b. % d, % Y was a % A')


]

Output :

As we can see in the output, the PeriodIndex.strftime() function has returned an Index object containing each element of the given PeriodIndex object in the specified format.
 
Example #2: Use PeriodIndex.strftime() function to print the given PeriodIndex object in the specified date_format.




# importing pandas as pd
import pandas as pd
  
# Create the PeriodIndex object
pidx = pd.PeriodIndex(start = '2016-10-12 11:12:02'
            end = '2020-04-12 11:32:12', freq = 'Q')
  
# Print the PeriodIndex object
print(pidx)


Output :

Now we will use the PeriodIndex.strftime() function to return the each period element in (‘%b-%Y’) format.




# return the PeriodIndex in specified format
pidx.strftime('% b-% Y')


]

Output :

As we can see in the output, the PeriodIndex.strftime() function has returned an Index object containing each element of the given PeriodIndex object in the specified format.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS