Question: Week 4 Assignment: Getting Started Coding with Python Instructions: You must review the attachments to know how to create Python program You need to create
Week 4 Assignment: Getting Started Coding with Python
Instructions:
You must review the attachments to know how to create Python program
You need to create Python program based on week 3 assignment requirements.
You are allowed to hard code the values in this assignment or use input() function
Example:
CCreate comment block (starts at line 1 of your code) with the following information:
"""
Your Name: Luis Rivera
Course Name: ENTD200 B003 Spring 2021
Instructor Name: Professor Ahmed Abaza
Week# 4
Date Completed: 4/XX/2021
"""
name = "Rivera"# hard coded value
name = input("What is your name")
"""
sample code for printing
"""
dev_name="Luis Rivera"# string is enclosed in quotations
home_country = "USA"
age=40# numbers are not enclosed in quotations
#print line format
print("Developer ", dev_name)
print("Home Country ", home_country)
print("Age ", age)
print(" ")# print empty line
#print form format
print("DeveloperHome CountryAge")
print(dev_name,"",home_country,"", age)
You need to submit the output of your code. I will accept an image or text.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
