Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Python | Pandas Timestamp.days_in_month

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 Timestamp.days_in_month attribute return the number of days in the month for the given date in the Timestamp object.

Syntax : Timestamp.days_in_month

Parameters : None

Return : number of days in month

Example #1: Use Timestamp.days_in_month attribute to find out the number of days in the given Timestamp object.




# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(2017, 2, 15, 12)
  
# Print the Timestamp object
print(ts)

Output :

Now we will use the Timestamp.days_in_month attribute to find out the number of days in the given Timestamp object.




# return the number of days in month
ts.days_in_month

Output :

As we can see in the output, the Timestamp.days_in_month attribute has returned 28 indicating that there are 28 days in the month of the given Timestamp object.

Example #2: Use Timestamp.days_in_month attribute to find out the number of days in the given Timestamp object.




# importing pandas as pd
import pandas as pd
  
# Create the Timestamp object
ts = pd.Timestamp(year = 2009, month = 10
           day = 21, tz = 'Europe/Berlin')
  
# Print the Timestamp object
print(ts)

Output :

Now we will use the Timestamp.days_in_month attribute to find out the number of days in the given Timestamp object.




# return the number of days in month
ts.days_in_month

Output :

As we can see in the output, the Timestamp.days_in_month attribute has returned 31 indicating that there are 31 days in the month of the given Timestamp object.


My Personal Notes arrow_drop_up
Last Updated : 08 Jan, 2019
Like Article
Save Article
Similar Reads
Related Tutorials