# Functions go here def make_statement(statement, decoration): """Emphasises headings by adding decoraction at the start and end """ print(f" {decoration * 3} {statement} {decoration * 3}") # Main Routine goes here make_statement("Programming is Fun!","👍")