Skip to content

Commit 93b5f79

Browse files
committed
ok haai bhai kr do uplode
1 parent ac869bf commit 93b5f79

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

section5/display_day.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
day=int(input('enter day number :- '))
2+
if day==1:
3+
print('Monday')
4+
elif day==2:
5+
print('Tuesday')
6+
elif day==3:
7+
print('Wednesday')
8+
elif day==4:
9+
print('Thursday')
10+
elif day==5:
11+
print('Friday')
12+
elif day==6:
13+
print('Saturday')
14+
elif day==7:
15+
print('Sunday')
16+
else:
17+
print('Invalid day number')

0 commit comments

Comments
 (0)