Computer Science, asked by suchitagirhe, 1 day ago

write a program for accepting grade numbers grade python if its between 1-4 then display primary section if it is between grade 5-10 then secondary section

Answers

Answered by edwinshajumalakaranc
0

Answer:

x=int(input("ENTER YOUR GRADE:"))

if x<5:

   if x>0:

       print("primary section")

elif x>4:

   if x<11:

       print("senior section")

Similar questions