I have this Python program to play the game Celebrity ID and in my game, I have 15 rounds.
The code:
while round<15
import random
celeblist=["a","b","c","d","e","f"] ##and so on
celebchoice=random.choice(celeblist)
celeblist.remove(celebchoice)
but it is not working and I would like to know how I can delete the item from the list permanently so it is deleted for the 15 rounds.