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...

1 answer below »
Programming Template & Hello, World!


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 b. 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 b. Display the class and program number 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 correct any errors Your Output should look something like this: Hello, World Rocko Graziano CIS 110 Program 1 Thu Aug 26 09:47:17 2021
Answered 4 days AfterSep 01, 2021

Answer To: Part 1, Programming Template & Hello, World! (75 points) This programming assignment will allow you...

Aditya answered on Sep 05 2021
147 Votes
import time
print("Hello, World")
print("\nOleg Sinelnik")
print(time.asctime(time.localtime(time
.time())))
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here