0
I want to make a program for finding the day on any particular date.can anyone help me?
2 Respuestas
+ 2
You can use the datetime Module.
https://docs.python.org/3/library/datetime.html
Just look for the method isweekday().
0
import datetime
#if you want to Today
print(datetime.date.today())
#or you want to get any day
print(datetime.date(2017, 11, 12))