yourName = input("What is your name: ") print("I think that %s is a good name" %(yourName)) #Another way to display the results without using a format specifier print("I think that", yourName, "is a good name")