Period 객체의 Timestamp 표현을 반환하려면 period.to_timestamp()를 사용하세요. 방법.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
pandas.Period는 기간을 나타냅니다. 기간 개체 만들기
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45)
기간 개체 표시
print("Period...\n", period)
Period 객체의 Timestamp 표현을 반환합니다. "freq" 매개변수를 사용하여 주파수를 설정했습니다.
print("\nPeriod to Timestamp...\n", period.to_timestamp(freq='T'))
예시
다음은 코드입니다.
import pandas as pd # The pandas.Period represents a period of time # Creating a Period object period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 17, minute = 20, second = 45) # display the Period object print("Period...\n", period) # Return the Timestamp representation of the Period object # We have set the frequency using the "freq" parameter print("\nPeriod to Timestamp...\n", period.to_timestamp(freq='T'))
출력
그러면 다음 코드가 생성됩니다.
Period... 2021-09-18 17:20:45 Period to Timestamp... 2021-09-18 17:20:00