""" Guido.py Illustrates if statement Say something nice if the user's name is Guido """ firstName = raw_input("What is your first name? ") print "Nice to meet you, " + firstName + "." if firstName == "Guido": print "Hey, thanks for inventing Python!"