# Functions go here def make_statement(statement, decoration, lines): """Creates headings (3 lines), subheadings (2 lines) and emphasised text / mini-headings (1 line). Only use emote for single line statements""" middle = f"{decoration * 3} {statement} {decoration * 3}" top_bottom = decoration * len(middle) if lines == 1: print(middle) elif lines == 2: print(middle) print(top_bottom) else: print(top_bottom) print(middle) print(top_bottom) # Main Routine goes here make_statement("Welcome to the Cannes Film Festival!", "=", 3) print() make_statement("Welcome to the Cannes Film Festival!", "*", 2) print() make_statement("Welcome to the Cannes Film Festival!", ":)", 1)