print "Give me your name." print "I would love you to type it below." print "If you don't I will not be pleased!" Name = raw_input(">") print "Hello", Name, ", how are you doing?" print "I will need to double-check as I have goldfish memory!" print "Give me your name." print "I would love you to type it below." print "If you don't I will not be pleased!" Name = raw_input(">") print "Now I have your name, I will need to ask you some questions!" print "Hello", Name, ", how are you doing?" print "Give me your date of birth first, then your favourite colour of cat, then your favourite type of cat." DOB = raw_input("> ") CCat = raw_input("> ") TCat = raw_input("> ") end1 = "You " end2 = "were " end3 = "born " end4 = "on " end5 = " and " end6 = "you " end7 = "like " end8 = " cats!" print end1 + end2 + end3 + end4 +"the " + DOB + end5 + end6 + end7 + CCat + "-" + TCat + end8