The month
attribute in pandas is used to obtain the value of the month from the given Timestamp object. It is equivalent to Python's datetime
object.
The month
attribute takes the below syntax:
Timestamp.month
As an attribute, month
takes no parameter value.
The month
attribute returns an int
representing the month value of the given date.
Let's look at the code below:
# A code to illustrate the month attribute in Pandas# importing the pandas libraryimport pandas as pd# creating a date time objectmy_date = pd.Timestamp('2022-04-29T7:48:52.192548651')# obtaining the month value from the given dateprint("The month value from the Timestamp object is: ", my_date.month)
datetime
) object. We name it my_date
.my_date
, by using the month
attribute.