What will be the output of the following code?

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