🐍

Python MM/DD/YYYY

Output: 01/15/2025
Riferimento Rapido
Stringa Formato
%m/%d/%Y
Output
01/15/2025

Formattare data come MM/DD/YYYY in Python

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

Codici formato data Python

Codice Significato Esempio
%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

Altri formati in Python

MM/DD/YYYY in altri linguaggi

Documentazione Ufficiale

Per maggiori informazioni sulla formattazione date in Python, consulta la documentazione ufficiale:

Documentazione date Python →

Pagine Correlate