Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

calander.py #29311

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions Python/calander.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import calendar
import datetime
from datetime import date

L=[]
s=" "
D=(" is a Day ")
date=str(input("Enter the date 'DD MM YEAR'(for example:- 25 12 2020) : "))
def remove(string):
return string.replace(" ", "")
string = (date)
RS=(remove(string) )
def split(word):
return list(word)
word = (RS)
SP=(split(word))
yr=(SP[4::])
for x in range (len(yr)):
L.append((int(yr[x])))
s=""
for i in L:
i=str(i)
s=s+i
year=int(s)

print(calendar.calendar(year))
print(" ")
day, month, year = date.split(' ')
day_name = datetime.date(int(year), int(month), int(day))
Day=(day_name.strftime("%A"))
if Day == "Monday" :
print("Monday" ,D)
elif Day == "Tuesday":
print("Tuesday",D)
elif Day == "Wednesday":
print("Wednesday",D)
elif Day == "Thursday":
print("Thursday",D)
elif Day == "Friday":
print("Friday",D)
elif Day == "Saturday":
print("Saturday",D)
else :
print("Sunday",D)