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

Python Pandas - 기간 개체의 문자열 표현 형식 지정 및 반환

<시간/>

기간 개체의 문자열 표현을 형식화하고 반환하려면 period.strftime()을 사용합니다. 방법. 이를 통해 형식 지정자를 strftime('%d-%b-%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 (format)...\n", period.strftime('%d-%b-%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
print("\nString representation (format)...\n", period.strftime('%d-%b-%Y'))

# display the result
print("\nString representation (format with different directives)...\n",
period.strftime('%b. %d, %Y was a %A'))

출력

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

Period...
2021-09-18 08:20:45

String representation (format)...
18-Sep-2021

String representation (format with different directives)...
Sep. 18, 2021 was a Saturday