Write a program hello_function.py
that includes a function called hello()
in it. The hello()
function should take the parameter name
and use it to print out a greeting. The main()
part of the program should have the user enter their name, and then call the hello()
function with that name.
Sample interaction:
Enter your name please: Gabriella
Hello, Gabriella!