# Functions goes here def make_statement(statement, decoration): """ Creates headings (3 lines), subheadings (2 lines) and emphasised text / mini - headings(1 line).Only use emoji for single line statements""" middle = f"{decoration * 3} {statement} {decoration * 3}" top_bottom = decoration * len(middle) print(top_bottom) print(middle) print(top_bottom) # Main Routine Goes here make_statement("This application was created by Jackson McClure to imitate ordering a pizza for AS91896 & AS91897", "=")