Python Pandas - 從 CustomBusinessHour 偏移量物件中以 24 小時格式顯示自定義營業時間的結束時間


要從 CustomBusinessHour 偏移量物件中以 24 小時格式顯示自定義營業時間的結束時間,請在 Pandas 中使用 CustomBusinessHour.end 屬性。

首先,匯入所需的庫 -

import pandas as pd

在 Pandas 中設定時間戳物件 -

timestamp = pd.Timestamp('2021-11-14 05:20:30')

建立 CustomBusinessHour 偏移量。此處,“start” 是自定義營業時間在 24 小時格式下的開始時間。“end” 是自定義營業時間在 24 小時格式下的結束時間 -

cbhOffset = pd.tseries.offsets.CustomBusinessHour(start="09:30", end = "18:30", n = 5)

將偏移量新增到時間戳並顯示更新後的時間戳 -

print("\nUpdated Timestamp...\n",timestamp + cbhOffset)

顯示自定義營業時間的結束時間 -

print("\nThe end time of the custom business hour...\n",cbhOffset.end)

示例

以下是程式碼 -

import pandas as pd

# Set the timestamp object in Pandas
timestamp = pd.Timestamp('2021-11-14 05:20:30')

# Display the Timestamp
print("Timestamp...\n",timestamp)

# Create the CustomBusinessHour Offset
# CustomBusinessHour is the DateOffset subclass
# Here, "start" is the start time of your custom business hour in 24h format.
# The "end" is the end time of your custom business hour in 24h format.
cbhOffset = pd.tseries.offsets.CustomBusinessHour(start="09:30", end = "18:30", n = 5)

# Display the CustomBusinessHour Offset
print("\nCustomBusinessHour Offset...\n",cbhOffset)

# Add the offset to the Timestamp and display the Updated Timestamp
print("\nUpdated Timestamp...\n",timestamp + cbhOffset)

# Display the end time of the custom business hour
print("\nThe end time of the custom business hour...\n",cbhOffset.end)

輸出

這將生成以下程式碼 -

Timestamp...
 2021-11-14 05:20:30

CustomBusinessHour Offset...
 <5 * CustomBusinessHours: CBH=09:30-18:30>

Updated Timestamp...
 2021-11-15 14:30:00

The end time of the custom business hour...
 (datetime.time(18, 30),)

更新於: 2021-10-22

111 次檢視

啟動您的 職業生涯

透過完成課程獲得認證

開始學習
廣告

© . All rights reserved.