How can I get the user to search one area and then be asked if they want to search the others without the already searched location in the list. Eg:
where do you want to search? x,y,z
x
where else do you want to search? y,z
search=input('Where do you search first?\nBedside table\nWardrobe\nDesk').lower()
if 'bedside' in search:
def bedside():
pass
bedside()
if 'wardrobe' in search:
def wardrobe():
pass
wardrobe()
if 'desk' in search:
def desk():
pass
desk()