Computer Science, asked by nirmlanagarat, 1 month ago

Let x= 2

if (x==1):

print("yes")

elif (x==2):

print("maybe")

else print ("no")​

Answers

Answered by VK3072006
1

Answer:

Maybe

Explanation:

Because you have use condition that if x is exactly equal to 2 then print("maybe")=>this condition is satisfied so maybe will output

Answered by VoidPhysics
1

Answer:

maybe

It will be the output

Similar questions