hello module#
- hello.hello_world(num)[source]#
A simple function that prints “Hello, world!” to the console.
- Parameters:
num (int) – An integer parameter that is not used in the function.
- Returns:
This function does not return anything.
- Return type:
None
Examples
>>> hello_world(5) Hello, world! Hello, world! Hello, world! Hello, world! Hello, world!