Saturday, December 13, 2025
HomeLanguagesPython | Pandas Period.month

Python | Pandas Period.month

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 Period.month attribute return an integer value. The returned value represents the value of month in the given period object. January being 1 to December being 12.

Syntax : Period.month

Parameters : None

Return : month

Example #1: Use Period.month attribute to find the value of month in the given Period object.




# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ='S', year = 2000, month = 2,
                 day = 21, hour = 8, minute = 21)
  
# Print the Period object
print(prd)


Output :

Now we will use the Period.month attribute to find out value of month in prd object.




# return value of month
prd.month


Output :

As we can see in the output, the Period.month attribute has returned 2 indicating that the given period object has ‘February’ as a month.

Example #2: Use Period.month attribute to find the value of month in the given Period object.




# importing pandas as pd
import pandas as pd
  
# Create the Period object
prd = pd.Period(freq ='T', year = 2006, month = 10, hour = 15, minute = 49)
  
# Print the Period object
print(prd)


Output :

Now we will use the Period.month attribute to find out value of month in prd object.




# return value of month
prd.month


Output :

As we can see in the output, the Period.month attribute has returned 10 indicating that the given period object has ‘October’ as a month.

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

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7200 POSTS0 COMMENTS
Thapelo Manthata
6897 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS