Consider a module to be the same as a code library.
A file containing a set of functions you want to include in your application.
Create a ModuleTo create a module just save the code you want in a file with the file extension .py
:
Save this code in a file named mymodule.py
def greeting(name):
print("Hello, " + name)
Now we can use the module we just created, by using the import
statement:
Import the module named mymodule, and call the greeting function:
import mymodule
mymodule.greeting("Jonathan")
Try it Yourself ยปNote: When using a function from a module, use the syntax: module_name.function_name.
Track your progress - it's free!
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4