🐍

Python DD/MM/YYYY

Ieșire: 15/01/2025
Referință Rapidă
Șir de Format
%d/%m/%Y
Ieșire
15/01/2025

Formatarea datei ca DD/MM/YYYY în Python

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

Parsarea șirului de dată

🐍 Python (Parsare)
from datetime import datetime date_string = '31/12/2025' date = datetime.strptime(date_string, '%d/%m/%Y') print(date) # Output: 2025-12-31 00:00:00

Coduri de format dată Python

Cod Semnificație Exemplu
%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

Alte formate în Python

DD/MM/YYYY în alte limbaje

Documentație Oficială

Pentru mai multe informații despre formatarea datelor în Python, vezi documentația oficială:

Documentația datelor Python →

Pagini Conexe