#!/usr/bin/env python3; def print_hello(name) : print("Hello, " + name + "!") # Begin Main print_hello("Fred") print_hello("Wilma") print_hello("Barney") print_hello("Betty")