#Christmas thank you letters import random yn = raw_input("Please enter your name ") r = raw_input("please enter the name of the person you are writing to " ) p = raw_input("please enter the present that you were given ") t =['It really was a lovely present', 'I am so touched that you purchased the present', 'How very lucky I am I feel warm inside', 'It was such an amazing present'] print '\nDear', r print '\nI am writing to say thank you for my Christmas present, I have always wanted a', p print "\nIt was very kind of you" print(random.choice(t)) print "\nMany thanks again" print "\nFrom", yn