like for a regular menu it would be:
def menu(list, question):
for entry in list:
print 1 + list.index(entry),
print ") " + entry
return input(question) - 1
items = ["bookcase", "sleeping dog", "couch", "closet", "rug", "door"]
How to create a menu to where when you entered 1 for bookcase it went into another menu
items = ["read", "throw away", "etc"]
And how to use it during programs