기간 개체의 형식을 지정하려면 period.strftime()을 사용하세요. 방법을 사용하고 24시간 형식으로 시간을 표시하려면 매개변수를 %H로 설정합니다.
먼저 필요한 라이브러리를 가져옵니다 -
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)
결과를 표시합니다. 여기에서 시간은 24시간 형식, 즉 [00,23]
으로 표시됩니다.print("\nString representation (24-Hour format)...\n", period.strftime('%H'))
예시
다음은 코드입니다.
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) # display the result # Here, Time is displayed with 24-Hour format i.e. [00,23] print("\nString representation (24-Hour format)...\n", period.strftime('%H'))
출력
그러면 다음 코드가 생성됩니다.
Period... 2021-09-18 17:20:45 String representation (24-Hour format)... 17