Mark of a student in Exam is taking as input. Based on this mark grade is decided by using if , elif and else.
More than or equal to 80 is A grade
More than or equal to 60 is B grade
More than or equal to 40 is C grade
Less than 40 mark is Fail
m=int(input("Enter your mark "))
if(m>=80):
print("You got A grade")
elif(m>=60):
print("You got B grade")
elif(m>=40):
print("You got C grade")
else:
print("Failed in this Exam ")
Python if else and elif to execute code blocks based on condition checking True or False