Write a Python program to Find the day of week of a given date
Topic: Write a Python program to Find the day of week of a given date
Solution
from datetime import datetime given_date = datetime(2020, 7, 26) print(given_date.strftime('%A'))
List all Python Programs