12. What does the following Python program display?
X=3
if(x=0);
print( "Am I here?")
elif (x=3);
print ("Or here?")
print ("Orover here?")
Answers
Answered by
2
Explanation:
print ("Orover here?")...!!!!!
Similar questions