ExampleGet your own Python Server Save this code in a file namedmymodule.py defgreeting(name): print("Hello, "+ name) Use a Module Now we can use the module we just created, by using theimportstatement: Example Import the module named mymodule, and call the greeting function: ...