Code import random print(random.choice([3, 3, 3, 4])) The random.choice([3, 3, 3, 4]) command will return a random element from the list [3, 3, 3, 4] and it can't be determined which element it is going to choose as this is completely random. Comments Log in or register to post comments
Comments