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

다양한 날짜/시간 형식을 표시하는 Python 프로그램

<시간/>

datetime 모듈은 날짜와 시간을 조작하기 위한 클래스를 제공합니다. 요일, 주 번호, 요일 등과 같은 다양한 형식을 표시합니다.

알고리즘

Step 1: Import datetime.
Step 2: Print day of the week.
Step 3: Print week number.
Step 4: Print day of the year.

예시 코드

import datetime

print("Day of the week: ", datetime.date.today().strftime("%A"))
print("Week number: ", datetime.date.today().strftime("%W"))
print("Day of the year: ", datetime.date.today().strftime("%j"))

출력

Day of the week:  Sunday
Week number:  06
Day of the year:  045

설명

strftime() 함수의 인수는 아래에 설명되어 있습니다.

  • %A:요일의 전체 이름(예:'월요일')
  • %W:일요일을 주의 첫째 요일로 하는 주 번호
  • %j:0으로 채워진 십진수로 된 일