Skip to content

example ¤

Example of code.

Functions:

  • hello

    Just an greetings example.

hello ¤

hello(name: str) -> str

Just an greetings example.

Parameters:

  • name ¤

    (str) –

    Name to greet.

Returns:

  • str ( str ) –

    greeting message

Examples:

.. code:: python

>>> hello("World")
'Hello World!'