KnowledgeBoat Logo
|

Computer Science

How do you reuse the functions defined in a module in your program?

Python Modules

2 Likes

Answer

To reuse the functions defined in a module in our program, we can import the module into our program using the import statement. Once imported, we can call the functions from the module using the module name followed by a dot (.) and the function name.

Answered By

1 Like


Related Questions