Computer Science

What does the following Python program display ?

x = 3                                
if x == 0:                          
    print ("Am I here?", end = ' ')   
elif x == 3:                         
    print("Or here?", end = ' ')
else :                               
    pass                             
print ("Or over here?")
  1. Am I here?
  2. Or here?
  3. Am I here? Or here?
  4. Or here? Or over here?
  5. Am I here? Or over here?

Python Control Flow

39 Likes

Answer

Or here? Or over here?

Answered By

9 Likes


Related Questions