Skip to content

Sandbox

sandbox.sandbox

Module for testing anything.

Functions:

  • hello

    Print a hello message.

Functions

hello()

Print a hello message.

Source code in sandbox\sandbox.py
Python
5
6
7
8
9
def hello():
    """ 
    Print a hello message.
    """
    print("hello")