About this question
How can you get today’s date in the YYYY-MM-DD format using Python? Learn which built-in modules and methods make it easy to generate and format the current date.
How can you get today’s date in the YYYY-MM-DD format using Python? Learn which built-in modules and methods make it easy to generate and format the current date.
Log in to share your answer and help other learners.
Log in to answerBest Answer · By JanBask Python Expert
Answered on Sep 2, 2025
In Python, getting today’s date in the YYYY-MM-DD format is quite straightforward, thanks to the built-in datetime module. This module provides classes for working with dates and times in a flexible way.
Here’s the simplest approach:
from datetime import date
today = date.today()
formatted_date = today.strftime("%Y-%m-%d")
print(formatted_date)Explanation:
Alternative methods:
Using datetime.now():
from datetime import datetime
today = datetime.now().strftime("%Y-%m-%d")
print(today) This is useful if you also need the time along with the date.
Using isoformat():
from datetime import date
print(date.today().isoformat()) Since isoformat() returns the date in YYYY-MM-DD, it’s the quickest way.
Why this is useful:
In short, Python’s datetime makes handling and formatting dates simple, and you can pick the method that best fits your use case.
Free tutorials and interview questions from industry experts — learn the skill, then get ready to prove it.
Most-read guides across JanBask
Common Python interview questions, answered
Guides, tips and career advice on Python from JanBask experts.
Python How to Become a Python Developer: A Step-by-Step Guide for Beginners
Discover how to become a Python Developer via a practical 7-step guide build projects, maintain clean code, practice daily, and…
Python PCEP Certification Guide: Entry-Level Python Programmer Certification
Explore this PCEP certification guide for insights on cost, exam format, passing score, application, training, and study tips.…
Python Top 50+ Python Projects ideas for Beginners to Advanced
Discover innovative Python project ideas, explore advanced Python projects, and find good Python projects for beginners and…
Python How To Comment Out Multiple Lines In Python Like A Pro
Commenting out code is a common practice among programmers. It allows you to temporarily disable parts of your code without…