C_01_Make_Statement.py
# Functions go here
def make_statement(statement, decoration):
    """Emphasizes headings by adding decoration 
    at the start and end"""

    print(f"{decoration * 3} {statement} {decoration * 3}")


# Main routine goes here
make_statement("Programming is Fun!", "👍")