I want to call a function named in the dictionary depending on the key called.
Example:
start_options = {'left': 'octopus', 'right': 'lion', 'small': 'pit', 'small door': 'pit'}
choice = raw_input("What do you want to do? ").lower()
if choice in dictionary:
print "found: " + choice, start_options[choice]
print "You chose " + choice
#code here will call function
def octopus():
#do something