Kizspy | Question: 31
(Choose 1 answer)
In Python, how can you import the random module and use it to generate a random integer between 1 and 10?
A. import random followed by random.randint(1, 10)
B. from random import * followed by randint(1, 10)
C. import random.randint followed by random.randint(1, 10)
D. import random followed by rand(1, 10)