""" GuidoOrNot.py Illustrates if - else structure Say something nice if the user's name is Guido and asks for Guido if user enters another name. """ firstName = raw_input("What is your first name? ") print "Nice to meet you, " + firstName + "." if firstName == "Guido": print "Hey, thanks for inventing Python!" else: print "Have you seen Guido around?"