Normally in all engineering colleges, there will be a long vacation after every even semester and a short vacation after every odd semester.Create a program in python to determine whether he will have a long vacation or short vacation at the end of a particular semester.
Answers
Answered by
3
Answer:
OK created..
Hope it help ful to u
Answered by
0
Answer:
i=int(input("enter the semester:"))
if (i%2)==0;
print(" long vacation")
else:
print(" short vacation")
Similar questions