+ 4
please tell me what's wrong with this code
2 Respostas
+ 2
Every time you do random.choice(list)) the computer picks a new random choice. You should do something like 
a = random.choice(list)) at the start of tour program. 
And use a in the rest of the program.
+ 4
thanks a lot Paul Jacobs





