Home > Backend Development > Python Tutorial > How Can I Determine the Day of the Week from a Date in Python?

How Can I Determine the Day of the Week from a Date in Python?

DDD
Release: 2024-12-04 09:19:15
Original
581 people have browsed it

How Can I Determine the Day of the Week from a Date in Python?

Determining Weekday from a Date

Given a datetime object, the question arises as to how we can ascertain its corresponding weekday. In other words, how do we determine whether it's Sunday, Monday, and so forth?

To answer this, Python provides the weekday() method for datetime objects. Let's explore its usage:

import datetime

today = datetime.datetime(2017, 10, 20)
weekday_num = today.weekday()  # Integer representing the weekday
Copy after login

The integer returned by weekday() corresponds to the weekday, with Monday being 0 and Sunday being 6. In this example, as today's date is Friday, weekday_num would be 6.

Here's an example using the current date:

import datetime

today = datetime.datetime.today()
weekday_num = today.weekday()
Copy after login

The weekday_num variable will contain an integer representing the current day of the week (e.g., 4 for Thursday).

The above is the detailed content of How Can I Determine the Day of the Week from a Date in Python?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template