# function goses here def make_statement(statement , decoration, lines): """ creates headings (3 lines), sub headings (2 lines) and emphasised text / mini headings (1line), only use emoji for single line statements""" middle = (f"{decoration * 3} {statement} {decoration * 3}") top_bottem = decoration * len(middle) if lines == 1: print(middle) elif lines ==2: print(middle) print(top_bottem) else: print (top_bottem) print (middle) print( top_bottem) #main gose here make_statement( "programing is fun", "=", 3) print() make_statement("programing is still fun!", "*", 2) print() make_statement("emoji in action", "🚀", 1) print()