Use the import statement:
>>> import random
>>> print(random.randint(1, 10))
4
import module will import a module and then allow you to reference its objects -- values, functions and classes, for example -- using the module.name syntax. In the above example, the random module...