Python | Панды Период. День
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Period.day attribute returns the day of the month for the given Period object. It returns an integer value.
Syntax : Period.day
Parameters : None
Return : day
Example #1: Use Period.day attribute to find the day in the given Period object.
# importing pandas as pdimport pandas as pd # Create the Period objectprd = pd.Period(freq ="D", year = 2001, month = 1, day = 21) # Print the Period objectprint(prd) |
Выход :

Now we will use the Period.day attribute to find the day of the month in the given object.
# return the day value prd.day |
Выход :

As we can see in the output, the Period.day attribute has returned 21 which is the value of day in the given period object.
Example #2: Use Period.day attribute to find the day in the given Period object.
Выход :

Now we will use the Period.day attribute to find the day of the month in the given object.
# return the day value prd.day |
Выход :

As we can see in the output, the Period.day attribute has returned 31 which is the value of day in the given period object.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.