Computer Science, asked by sarojtharu705, 7 months ago

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 roopeswaridevi
3

Answer:

OK created..

Hope it help ful to u

Answered by narasimhagopireddy99
0

Answer:

i=int(input("enter the semester:"))

if (i%2)==0;

print(" long vacation")

else:

print(" short vacation")

Similar questions