Skip to content

Reference

This part of the project documentation focuses on an information-oriented approach. Use it as a reference for the technical implementation of the calculator project code.

say_something(something)

Say something.

Parameters:

Name Type Description Default
something str

Something to say.

required

Returns: something said.

Source code in eggi/main.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
def say_something(something: str) -> str:
    """
    Say something.

    Args:
        something: Something to say.

    Returns: something said.

    """
    print(f"Something: {something}")
    return f"Something: {something}"