CMIS 102, HW – Description
Provide screenshot of following code being made and ran.
# Python code
# This program will display the message My name is xxx to the screen.
# Developer: Faculty CMIS102
# Date: June 20, 2023
#in Python, we can execute individual commands (later we’ll learn how to execute a program and functions)
print(“Hello class “)
print(“Prof. B. “)
print(“CMIS 102/nnnn t June 20, 2023”)
# Exercises to try ————————————-
# 1. create a file with this code, save it and execute
# 2. edit the file, change Prof B. to your name, save it and execute
# 3. add/edit a second print statement(s) to display your course no., section, and date
# 4. try inserting n t inside the quotes somewhere
# 5. try assigning your name to a variable and print the variable i.e.
# myName = “Trevor”
# print(myName)
# print(“my name is: “, myName)
The post CMIS 102, HW first appeared on .