ItSolutionStuff.com

How to Get Current Day in Python?

By Hardik Savani โ€ข October 30, 2023
Python

This is a short guide on python get current day. Iรขโ‚ฌโ„ขm going to show you about how to get current day in python. Here you will learn how to get current day in python 3. we will help you to give example of python get today day. Here, Creating a basic example of python get current day as decimal number.

In this post, i will give you three examples to getting current day in python. we will use datetime module to get current day from date. so let's see following examples with output:

Example 1:

main.py

from datetime import datetime
  
today = datetime.now()
  
print("Current Date and Time :", today)
print("Current Day :", today.day)

Output:

Current Date and Time : 2022-05-02 09:33:51.346666
Current Day : 02

Example 2:

main.py

from datetime import datetime
  
today = datetime.now()
  
day1 = today.strftime("%d")
print("Current Day with zero :", day1);
  
day2 = today.strftime("%-d")
print("Current Day :", day2);

Output:

Current Day with zero : 02
Current Day : 2

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

๐Ÿ“บ Subscribe on YouTube

We Are Recommending You

โ˜…

How to Get Current Date and Time in Python?

Read Now โ†’
โ˜…

How to Get Current Date in Python?

Read Now โ†’
โ˜…

Laravel 9 Webcam a Take Photo and Save From Camera Example

Read Now โ†’
โ˜…

Laravel 9 CRUD with Image Upload Tutorial

Read Now โ†’
โ˜…

Laravel 9 Inertia JS CRUD with Jetstream & Tailwind CSS

Read Now โ†’
โ˜…

Laravel 9 Socialite Login with Twitter Account Example

Read Now โ†’
โ˜…

Laravel 9 Drag and Drop File Upload with Dropzone JS

Read Now โ†’
โ˜…

Angular 13 Server Side Pagination Example

Read Now โ†’
โ˜…

Angular 13 Reactive Forms Validation Tutorial Example

Read Now โ†’
โ˜…

How to Validate Excel Sheet Data in Laravel?

Read Now โ†’
โ˜…

Laravel Blade Include File Example

Read Now โ†’