Để tạo ngày giờ UTC đơn giản từ dấu thời gian POSIX, hãy sử dụng timestamp.utcfromtimestamp () phương pháp. Chuyển POSIX làm đối số.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Tạo dấu thời gian
timestamp = pd.Timestamp('2021-09-14T15:12:34.261811624')
Tạo ngày giờ UTC đơn giản từ dấu thời gian POSIX. POSIX được chuyển như một đối số
timestamp.utcfromtimestamp(1631717502)
Ví dụ
Sau đây là mã
import pandas as pd # creating a timestamp timestamp = pd.Timestamp('2021-09-14T15:12:34.261811624') # display the Timestamp print("Timestamp...\n", timestamp) # constructing a naive UTC datetime from a POSIX timestamp # POSIX is passed as an argument print("\nConstruct UTC Datetime...\n", timestamp.utcfromtimestamp(1631717502))
Đầu ra
Điều này sẽ tạo ra mã sau
Timestamp... 2021-09-14 15:12:34.261811624 Construct UTC Datetime... 2021-09-15 14:51:42