So I have a list with integers like this:
list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
And I want to choose random integer from it with choice:
item = random.choice(list)
But how do I make sure the next time I do this, it is different item? I don't want to remove items from my list.