#Jay Summet (GaTech) # # If / elif demonstrator userInput = raw_input("enter a number!") if (userInput=="0"): print "first if" elif(userInput == "1"): print "first elif!" elif(userInput=="2"): print "second elif!" else: print "else!" print "at end!"