hafe4k 0 Newbie Poster

Need some help in python.
How do i make the user choose wheter or not to pick it up? (i can do picking up an item from a list):

objectsCarried = []
inventory =
lengthOfInventory =len(inventory)
print 'The room holds:'
for item in range(lengthOfInventory):
print item, inventory[item]

numberChosen = int(raw_input('use the number to pick up an item '))
objectChosen = inventory[numberChosen]
objectsCarried.append(objectChosen)
inventory.remove(objectChosen)
print 'you are carrying '
for item in objectsCarried:
print item
print
print 'The room now holds:'
for item in inventory:
print item

But i cant do when u have a choice to pick up or not.
Also if not too much trouble then how can i do:

IF the user picks the bat up then when he comes across the vampire then he kills it, but if he hasnt pickd up the bat then he dies?

Thanks in advance

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.