I am wondering if their is any way to make a random.choice command not chose the same twice
for example:
import random
temp = 0
list_ = ["apple", "orange", "banana"]
while (temp == 0):
temp2 = random.choice(list_)
print (temp2)
how do i make it not print the same fruit twice