Write the output of the given Python code :
a = 20
if a > = 22:
print(“if”)
elif a >= 21:
print(“elif”)
else:
print(“else”)
Answers
Answered by
3
Answer:
output will be
that
it will print else
Explanation:
plz follow me guys mark me as brilliest
Answered by
4
a = 20
if a > = 22:
print(“if”)
elif a >= 21:
print(“elif”)
else:
print(“else”)
Answer:
else
Question 4:
Similar questions