9 lines
174 B
Python
9 lines
174 B
Python
# example.py
|
|
|
|
def exampleFunction():
|
|
"""
|
|
Example function in a module.
|
|
:return: A string message.
|
|
"""
|
|
return "This is an example function from a module."
|