Let x= 2
if (x==1):
print("yes")
elif (x==2):
print("maybe")
else print ("no")
Answers
Answered by
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
1
Answer:
maybe
It will be the output
Similar questions