Để trả về biểu diễn Dấu thời gian của đối tượng Dấu chấm, hãy sử dụng period.to_timestamp () phương pháp.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Con gấu trúc.Period đại diện cho một khoảng thời gian. Tạo đối tượng Dấu chấm
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)
Hiển thị đối tượng Dấu chấm
print("Period...\n", period)
Trả về biểu diễn Dấu thời gian của đối tượng Giai đoạn. Chúng tôi đã đặt tần suất bằng tham số "freq"
print("\nPeriod to Timestamp...\n", period.to_timestamp(freq='T'))
Ví dụ
Sau đây là mã
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45) # display the Period object print("Period...\n", period) # Return the Timestamp representation of the Period object # We have set the frequency using the "freq" parameter print("\nPeriod to Timestamp...\n", period.to_timestamp(freq='T'))
Đầu ra
Điều này sẽ tạo ra mã sau
Period... 2021-09-18 17:20:45 Period to Timestamp... 2021-09-18 17:20:00