I am in the early stages of learning at the moment and I'm attempting to make a simple little memory game.
The problem I am having is printing a different random item constantly until the list has been exhausted, whilst giving the user a little time between each output to remember it.
import random
List1 = ['item' , 'item' , 'ect']
Print(random.choice(List1))
input('press enter for next item')