Set_up: I have a .py file for each function I need to use in a program.
In this program, I need to call the function from the external files.
I\'ve tried:
First of all you do not need a .py.
.py
If you have a file a.py and inside you have some functions:
a.py
def b(): # Something return 1 def c(): # Something return 2
And you want to import them in z.py you have to write
z.py
from a import b, c