Third Week Note
Third Week Note
elif condition2:
else:
Note: if you have more than 2 or 3 conditions you can you as many elif
statements as you want.
Solution:
else:
Explanation : If the age is 18 or more, the code prints You are eligible;
otherwise, prints You are not eligible.
Solution:
print("Even number")
else:
print("Odd number")
3. Grading System
80-89 → Grade B
70-79 → Grade C
60-69 → Grade D
Below 60 → Grade F
Solution:
print("A")
print("B")
print("C")
print("D")
else:
print(" F")
Explanation: The program checks the score range and assigns a grade
accordingly.