Timestamp 객체를 네이티브 Python datetime 객체로 변환하려면 timestamp.to_pydatetime() 메서드를 사용하세요.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
Pandas에서 타임스탬프 개체 만들기
timestamp = pd.Timestamp('2021-09-11T13:12:34.261811')
타임스탬프를 네이티브 Python datetime 객체로 변환
timestamp.to_pydatetime()
예시
다음은 코드입니다.
import pandas as pd # set the timestamp object in Pandas timestamp = pd.Timestamp('2021-09-11T13:12:34.261811') # display the Timestamp print("Timestamp...\n", timestamp) # convert timestamp to native Python datetime object print("\nConvert Timestamp...\n", timestamp.to_pydatetime())로
출력
그러면 다음 코드가 생성됩니다.
Timestamp... 2021-09-11 13:12:34.261811 Convert Timestamp... 2021-09-11 13:12:34.261811