Friday, October 24, 2025
HomeLanguagesPython | Pandas Period.weekday

Python | Pandas Period.weekday

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.weekday attribute returns an integer value indicating the weekday of the given period object.

Syntax : Period.weekday

Parameters : None

Return : weekday

Example #1: Use Period.weekday attribute to find out the weekday 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 = 22,
                          hour = 8, minute = 21, second = 24)
  
# Print the Period object
print(prd)


Output :

Now we will use the Period.weekday attribute to find the weekday in prd object.




# return the weekday
prd.weekday


Output :

As we can see in the output, the Period.weekday attribute has returned 1 indicating the given period is the first day of the week.

Example #2: Use Period.weekday attribute to find out the weekday in the given period object.




# 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)


Output :

Now we will use the Period.weekday attribute to find the weekday in prd object.




# return the weekday
prd.weekday


Output :

As we can see in the output, the Period.weekday attribute has returned 6 indicating the given period is the sixth day of the week.

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

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS