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

Python Pandas - 주어진 기간의 주 가져오기

<시간/>

주어진 기간의 주를 얻으려면 period.weekofyear를 사용하세요. 특성. 먼저 필요한 라이브러리를 가져옵니다 -

pandas를 pd로 가져오기

pandas.Period는 기간을 나타냅니다. 두 개의 기간 개체 만들기

period1 =pd.Period("2020-09-23")period2 =pd.Period(freq="D", 연도 =2021, 월 =4, 일 =16, 시 =2, 분 =35) 

기간 개체 표시

print("기간1...\n", period1)print("기간2...\n", 기간2)

두 개의 Period 개체에서 올해의 주 가져오기

res1 =period1.weekofyearres2 =period2.weekofyear

다음은 코드입니다.

pandas를 pd로 가져오기# pandas.Period는 두 개의 Period 객체를 생성하는 기간을 나타냅니다.period1 =pd.Period("2020-09-23")period2 =pd.Period(freq="D", year =2021 , 월 =4, 일 =16, 시간 =2, 분 =35)# 기간 개체 표시print("Period1...\n", period1)print("Period2...\n", period2)# 두 개의 Period 객체의 주 res1 =period1.weekofyearres2 =period2.weekofyear# 두 개의 Period 객체의 주를 반환합니다.print("\n첫 번째 Period 객체의 주 ...\n", res1)print ("\n두 번째 기간 개체의 주...\n", res2)

출력

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

Period1...2020-09-23Period2...2021-04-16첫 번째 Period 객체의 주...392번째 Period 객체의 주...15