기간 개체의 형식을 지정하려면 period.strftime()을 사용하세요. 방법을 사용하고 세기 없이 연도를 표시하려면 매개변수를 %y로 설정하십시오.
먼저 필요한 라이브러리를 가져옵니다 -
import pandas as pd
pandas.Period는 기간을 나타냅니다. 기간 개체 만들기
period = pd.Period(freq="S", year = 2021, month = 9, day = 18, hour = 8, minute = 20, second = 45)
기간 개체 표시
print("Period...\n", period)
결과를 표시합니다. 여기에서 연도는 세기 없이 표시됩니다.
print("\nString representation (year without century)...\n", period.strftime('%y'))
예시
다음은 코드입니다.
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 = 8, minute = 20, second = 45) # display the Period object print("Period...\n", period) # display the result # Here, year is displayed without century print("\nString representation (year without century)...\n", period.strftime('%y'))
출력
그러면 다음 코드가 생성됩니다.
Period... 2021-09-18 08:20:45 String representation (year without century)... 21