# Futurelearn: Python 101 from RPi Foundation - Ifs phrase = input("Talk to me > ") if phrase == "hi": print("hello") elif phrase == "whats your name": print("Marvin") else: print("sorry I don't understand '" + phrase+ "'") print("bye")