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:วันของปีเป็นเลขทศนิยมที่มีเบาะเป็นศูนย์