You are writing code that generates a random integer with a minimum value of 5 and a maximum value of 11. Which two functions should you use? Each correct answer presents a complete solution. (Choose two.)
Select all that apply, then click Submit answer.
-
○
random.randint(5, 12)
-
○
random.randint(5, 11)
-
○
random.randrange(5, 12, 1)
-
○
random.randrange(5, 11, 1)
