What is the output of the following code:
from random import randint
print(randint(1, 10))
print(randint(1, 10))
A. A random integer between 1 and 10
B. An error will occur
C. 10
D. 1
Answer: Option A

Join The Discussion