What is the output of the following code:
from random import randint
print(randint(1, 10))
print(randint(1, 10))
What is the output of the following code:from random import randint Correct Answer A random integer between 1 and 10
print(randint(1, 10))
মোঃ আরিফুল ইসলাম
Feb 20, 2025