import random rainbow = [ 'r', 'g', 'b' ] c1 = random.choice( rainbow ) c2 = random.choice( rainbow ) c3 = random.choice( rainbow ) print( c1, c2, c3 ) random.seed( 'Shannon' ) # MAKES YOU GET THE SAME RANDOM CHOICE EVERY TIME #WHEN THE SAME SEED VALUE IS USED #random seed uses the value we give it to decide where it is going to start c1 = random.choice( rainbow ) c2 = random.choice( rainbow ) c3 = random.choice( rainbow ) print( c1, c2, c3 )