Learn Before
Code
Importing Modules
Modules are files which can be thought of as packages containing functions and definitions meant for use in Python programming. Importing can be done through the use of import statements.
import turtle import random import aifc
^The above statements import the turtle module, random module, and aifc module, respectively.
0
2
Updated 2020-09-03
Tags
Data Science