Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - UTC 날짜 및 시간을 나타내는 새 타임스탬프 반환

<시간/>

UTC 날짜와 시간을 나타내는 새로운 타임스탬프를 반환하려면 timestamp.utcnow()를 사용하세요. 방법. 먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

타임스탬프 생성

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

UTC 날짜 및 시간이 포함된 새 타임스탬프

timestamp.utcnow()

예시

다음은 코드입니다.

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())

출력

그러면 다음 코드가 생성됩니다.

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

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