Import

Applies to: python, general

Importing makes code from another module or package available in the current file, so you can reuse functions, classes, and constants.

import math
math.sqrt(9)

See also: module, package, library