Assuming that the code below has been executed successfully, which of the following expressions will always evaluate to True? (Select two answers)
import random
v1 = random. random()
v2 = random. random()
len(random.sample([1,2,3],2)) > 2
v1 == v2
random.choice([1,2,3]) >=1
v1 >= 1
Submit