#Python2 name = raw_input("who are you? ") print "hello %s" % (name,) #Python3+ name = input("who are you? ") print("hello %s" % (name,))