Skip to content

common module

The common module contains common functions and classes used by the other modules.

greetings(name)

Greets the name by user.

Parameters:

Name Type Description Default
name str

The name of the user.

required
Source code in mapvu/common.py
def greetings(name):
    """Greets the name by user.

    Args:
        name (str): The name of the user.
    """
    print(f"Hello, {name}")    

hello_world()

Prints "Hello World!" to the console.

Source code in mapvu/common.py
def hello_world():
    """Prints "Hello World!" to the console.
    """
    print("Hello World!")