Thursday, November 13, 2025
HomeLanguagesPython | Pandas PeriodIndex.year

Python | Pandas PeriodIndex.year

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.year attribute return an Index object containing the year value of each period element in the given PeriodIndex object.

Syntax : PeriodIndex.year

Parameters : None

Return : Index object

Example #1: Use PeriodIndex.year attribute to find out the year of the period for each element in the given PeriodIndex object.




# 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.year attribute to find out the year value of each period element in the given PeriodIndex object.




# return the year of each period
pidx.year


Output :

As we can see in the output, the PeriodIndex.year attribute has returned an Index object containing the year of period for each element in the given PeriodIndex object.
 
Example #2: Use PeriodIndex.year attribute to find out the year of the period for each element in the given PeriodIndex object.




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


Output :

Now we will use the PeriodIndex.year attribute to find out the year value of each period element in the given PeriodIndex object.




# return the year of each period
pidx.year


Output :

As we can see in the output, the PeriodIndex.year attribute has returned an Index object containing the year of period for each element in the given PeriodIndex object.

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

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11916 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6836 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS