Define and call a simple function yell_it()
yell_it() prints the phrase with "!" concatenated to the end
takes no arguments
indented function code does the following
define a variable for called phrase and initialize with a short phrase
prints phrase as all upper-case letters followed by "!"
call yell_it at the bottom of the cell after the function def (Tip: no indentation should be used)