play a game with the user
def play_game(): print "Welcome to the game!" print "Do you want to play the game?" answer = raw_input() if answer == "yes": print "Let's play" elif answer == "no": print "Goodbye" else: print "I don't understand" print "Bye for now"