Python - Modules and Code Organization
What will be the output of the following code snippet?
from random import randint print(randint(1, 3)) import random print(random.randint(4, 6))
