0 votes
in Python by
How are modules imported in Python?

1 Answer

0 votes
by
Modules are imported using the import keyword by either of the following three ways:

import array

import array as arr

from array import *
...