Computer Science, asked by Anonymous, 9 months ago

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

Answer:

output will be

that

it will print else

Explanation:

plz follow me guys mark me as brilliest

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
4

a = 20

if a > = 22:

print(“if”)

elif a >= 21:

print(“elif”)

else:

print(“else”)

Answer:

else

Question 4:

Similar questions