Python | Отметка времени панды. Микросекунда
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas Timestamp.microsecond attribute return the value of microsecond in the given Timestamp object.
Syntax : Timestamp.microsecond
Parameters : None
Return : microsecond
Example #1: Use Timestamp.microsecond attribute to find the value of microsecond in the given Timestamp object.
# importing pandas as pdimport pandas as pd # Create the Timestamp objectts = pd.Timestamp(2016, 1, 1, 12, 25, 16, 28) # Print the Timestamp objectprint(ts) |
Выход :

Now we will use the Timestamp.microsecond attribute to print the value of microsecond in ts object.
# find the value of microsecondts.microsecond |
Выход :

As we can see in the output, the Timestamp.microsecond attribute has returned 28 indicating that the value of microsecond in the ts object is set to 28.
Example #2: Use Timestamp.microsecond attribute to find the value of microsecond in the given Timestamp object.
# importing pandas as pdimport pandas as pd # Create the Timestamp objectts = pd.Timestamp(year = 2009, month = 5, day = 31, hour = 4, microsecond = 15, tz = "Europe/Berlin") # Print the Timestamp objectprint(ts) |
Выход :

Now we will use the Timestamp.microsecond attribute to print the value of microsecond in ts object.
# find the value of microsecondts.microsecond |
Выход :

As we can see in the output, the Timestamp.microsecond attribute has returned 15 indicating that the value of microsecond in the ts object is set to 15.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.