Python | Pandas Timestamp.is_leap_year Last Updated : 08 Jan, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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.is_leap_year attribute return a boolean value. It return True if the date in the given Timestamp object is a leap year else it return False. Syntax : Timestamp.is_leap_year Parameters : None Return : boolean Example #1: Use Timestamp.is_leap_year attribute to check if the date in the given Timestamp object is a leap year or not. Python3 # importing pandas as pd import pandas as pd # Create the Timestamp object ts = pd.Timestamp(2016, 2, 15, 12) # Print the Timestamp object print(ts) Output : Now we will use the Timestamp.is_leap_year attribute to find out if the date in the ts object is a leap year or not. Python3 # check for leap year ts.is_leap_year Output : As we can see in the output, the Timestamp.is_leap_year attribute has returned True indicating the date in the given Timestamp object is a leap year. Example #2: Use Timestamp.is_leap_year attribute to check if the date in the given Timestamp object is a leap year or not. Python3 # importing pandas as pd import pandas as pd # Create the Timestamp object ts = pd.Timestamp(year = 2009, month = 10, day = 21, hour = 4, tz = 'Europe/Berlin') # Print the Timestamp object print(ts) Output : Now we will use the Timestamp.is_leap_year attribute to find out if the date in the ts object is a leap year or not. Python3 # check for leap year ts.is_leap_year Output : As we can see in the output, the Timestamp.is_leap_year attribute has returned False indicating the date in the given Timestamp object is not a leap year. Comment More infoAdvertise with us Next Article Python | Pandas Series.dt.is_leap_year S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Python Pandas-Timestamp Practice Tags : python Similar Reads Python | Pandas Timestamp.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 Timestamp.year attribute return the year in which the date in the given Timesta 2 min read Python | Pandas Timestamp.is_year_end 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.is_year_end attribute return a boolean value. It return True if the d 2 min read Python | Pandas Timestamp.is_year_start 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.is_year_start attribute return a boolean value. It return True if the 2 min read Python | Pandas Series.dt.is_leap_year Series.dt can be used to access the values of the series as datetimelike and return several properties. Pandas Series.dt.is_leap_year attribute return a boolean indicator if the date belongs to a leap year. Syntax: Series.dt.is_leap_year Parameter : None Returns : numpy array Example #1: Use Series. 2 min read Python | Pandas Timestamp.isocalendar 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.isocalendar() function return a 3-tuple containing ISO year, week num 2 min read Python | Pandas Timestamp.ctime 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.ctime() function return the time in string format. The format of the 2 min read Like