# functions def make_statement(statement, decoration): print(f"{decoration * 3} {statement} {decoration * 3}") make_statement(statement="programming", decoration="😤")