Python의 현재 연도 및 월 날짜 날짜로 현재 연도와 월을 지정해야 합니다. 사용자: datem = datetime.today().strftime("%Y-%m") datem = datetime.strptime(datem, "%Y-%m") 다른 방법이 있을까요?다음 솔루션을 사용해 보십시오. from datetime import datetime currentSecond= datetime.now().second currentMinute = datetime.now().minute currentHour = datetime.now().hour currentDay = datetime.now().day currentMonth = datetime.now().month currentYear = datetime.now..