🐍

Python YYYY-MM-DD

ผลลัพธ์: 2025-01-15
อ้างอิงด่วน
รูปแบบสตริง
%Y-%m-%d
ผลลัพธ์
2025-01-15

จัดรูปแบบวันที่เป็น YYYY-MM-DD ใน Python

🐍 Python
from datetime import datetime date = datetime.now() formatted = date.strftime('%Y-%m-%d') print(formatted) # Output: 2025-12-31

แปลงสตริงวันที่

🐍 Python (การแปลง)
from datetime import datetime date_string = '2025-12-31' date = datetime.strptime(date_string, '%Y-%m-%d') print(date) # Output: 2025-12-31 00:00:00

รหัสรูปแบบวันที่ Python

รหัส ความหมาย ตัวอย่าง
%d Day of month (01-31) 31
%m Month (01-12) 12
%Y Year with century 2025
%y Year without century (00-99) 25
%b Abbreviated month name Dec
%B Full month name December
%a Abbreviated weekday Wed
%A Full weekday name Wednesday

รูปแบบอื่นๆ ใน Python

YYYY-MM-DD ในภาษาอื่น

เอกสารอย่างเป็นทางการ

สำหรับข้อมูลเพิ่มเติมเกี่ยวกับการจัดรูปแบบวันที่ใน Python ดูเอกสารอย่างเป็นทางการ:

เอกสารวันที่ Python →

หน้าที่เกี่ยวข้อง