Login
Remember
Register
Ask a Question
How are modules imported in Python?
0
votes
asked
Oct 14, 2021
in
Python
by
rajeshsharma
How are modules imported in Python?
modules-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Oct 14, 2021
by
rajeshsharma
Modules are imported using the import keyword by either of the following three ways:
import array
import array as arr
from array import *
...