Part 1, Programming Template & Hello, World! (75 points)
This programming assignment will allow you to create a template that can be used for all programs in this course. This template will be stored as a python program and will contain all the necessary documentation that will be required in this course.
Â
1. Each program will contain a documentation header that will include:
a. The program name
. Author’s name
c. Brief description of what the program does
d. Date created/modified
e. Notes of interest
Â
2. Have several lines of code at the end of each program that will:
a. Display your name
. Display the class and program numbe
c. Display the date & time the program was run. This can be accomplished by using this command:
print(time.asctime( time.localtime(time.time())))
If you wish to use this command you should add the line
import time
as the first line of your program to tell Python to include the time functions
Â
Your assignment:
· Create a template based on the description above
· save this as template.py
· Modify the program to print out the message "Hello World"
· Save this as  lastname_program1.py (eg, graziano_program1.py)
· Test your program and co
ect any e
ors
Your Output should look something like this:
Hello, World
Rocko Graziano
CIS 110 Program 1
Thu Aug 26 09:47:17 2021