Importing
Python3
# Same directory
from .config import config
from .routes import user as user_blueprint
# Sub directory
from sound.effects import echoimport sound.effects.echo
sound.effects.echo.echofilter(input, output, delay=0.7, atten=4)
from sound.effects import * #bad practicePython2
Importing from Same Dir
Importing from Subdirectory
Importing from Sister Directory
File IO In Imported Files
Last updated