Given a Python file, we need to call a function in it defined in any other Python file.
Example:
Suppose there is a file test.py which contains the definition of the function displayText().
#test.py>
def displayText():
print( “Geeks 4 Geeks!”)
We need to call the function displayText() in any other Python file such that wherever we call displayText() function displays text present in it. This can be done using Python modules.
Approach:
- Create a Python file containing the required functions.
- Create another Python file and import the previous Python file into it.
- Call the functions defined in the imported file.
The above approach has been used in the below examples:
Example 1: A Python file test.py is created and it contains the displayText() function.
Python3
def displayText():
print ( "Geeks 4 Geeks !" )
|
Now another Python file is created which calls the displayText() function defined in test.py.
Python3
from test import *
displayText()
|
Output:
Geeks 4 Geeks!
In the above program, all the functions defined in test.py file is imported then a functions is called.
Example 2: A Python file calc.py is created containing addNumbers(), subractNumbers(), multiplyNumbers(), divideNumbers() and modulusNumbers().
Python3
def addNumbers(a, b):
print ( "Sum is " , a + b)
def subtractNumbers(a, b):
print ( "Difference is " , a - b)
def multiplyNumbers(a, b):
print ( "Product is " , a * b)
def divideNumbers(a, b):
print ( "Division is " , a / b)
def modulusNumbers(a, b):
print ( "Remainder is " , a % b)
|
The functions defined in calc.py is called in another Python file.
Python3
from calc import addNumbers, multiplyNumbers
addNumbers( 2 , 5 )
multiplyNumbers( 5 , 4 )
|
Output:
7
20
In the above program, all the functions defined in calc.py are not imported.
To import all the functions defined in a Python file:
Syntax:
from file import *
To import only required functions defined in a Python file:
Syntax:
from file import func1, func2, func3
Example 3:
The below Python files test.py and calc.py are created having various function definitions.
Python3
def displayText():
print ( "\nGeeks 4 Geeks !" )
|
Python3
def addNumbers(a, b):
print ( "Sum is " , a + b)
def subtractNumbers(a, b):
print ( "Difference is " , a - b)
def multiplyNumbers(a, b):
print ( "Product is " , a * b)
def divideNumbers(a, b):
print ( "Division is " , a / b)
def modulusNumbers(a, b):
print ( "Remainder is " , a % b)
|
Both files are imported into an another Python file named file.py.
Python3
from calc import *
from test import displayText
addNumbers( 25 , 6 )
subtractNumbers( 25 , 6 )
multiplyNumbers( 25 , 6 )
divideNumbers( 25 , 6 )
modulusNumbers( 25 , 6 )
displayText()
|
Output:
Sum is 31
Difference is 19
Product is 150
Division is 4.166666666666667
Remainder is 1
Geeks 4 Geeks!
In the above program, functions defined in test.py and calc.py are called in a different file which is file.py.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
21 May, 2021
Like Article
Save Article