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

Python Pandas - 순진한 타임스탬프를 현지 시간대로 변환

<시간/>

순진한 타임스탬프를 현지 시간대로 변환하려면 timestamp.tz_locale()을 사용하세요. . 그 안에서 tz 매개변수를 사용하여 시간대를 설정합니다.

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

순진한 타임스탬프 만들기

timestamp = pd.Timestamp('2021-09-14T15:12:34.261811624')

시간대 추가

timestamp.tz_localize(tz='Australia/Brisbane')

예시

다음은 코드입니다.

import pandas as pd

# creating a naive timestamp
timestamp = pd.Timestamp('2021-09-14T15:12:34.261811624')

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

# add a timezone
print("\nTimestamp to local time zone...\n", timestamp.tz_localize(tz='Australia/Brisbane'))

출력

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

Timestamp...
 2021-09-14 15:12:34.261811624

Timestamp to local time zone...
 2021-09-14 15:12:34.261811624+10:00