How to reference another file in python

Code examples

1
0

how to import your own function python

#For one particular fuction,
from fileName import function1()
fileName.function1()
#For multiple functions,
from fileName import function1(), function2()
fileName.function1()
fileName.function2()
#For all functions (or to remove the "fileName." prfix),
from fileName import *
function1()
function2()
function3()
#(You don't need to call all of them, I'm just demonstrating)
0
0

how to import functions from another python file

from file_name import function_name #do not include brackets or file types

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................