Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - รับ UTC Offset Time


ในการรับ UTC Offset Time ให้ใช้ timestamp.utcoffset() . ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างการประทับเวลา

timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC')

การประทับเวลาใหม่พร้อมวันและเวลา UTC

timestamp.utcnow()

รับเวลาออฟเซ็ต UTC

timestamp.utcoffset()

ตัวอย่าง

ต่อไปนี้เป็นรหัส

import pandas as pd

# creating a timestamp
timestamp = pd.Timestamp('2021-10-16T15:12:34.261811624', tz='UTC')

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

# new timestamp with UTC day and time
print("\nUTC day and time...\n", timestamp.utcnow())

# Get the UTC offset time
print("\nUTC offset time...\n", timestamp.utcoffset())

ผลลัพธ์

ซึ่งจะได้รหัสดังต่อไปนี้

Timestamp...
 2021-10-16 15:12:34.261811624+00:00

UTC day and time...
 2021-10-03 07:56:44.685816+00:00

UTC offset time...
 0:00:00