-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfirst_exercise.py
More file actions
21 lines (18 loc) · 889 Bytes
/
first_exercise.py
File metadata and controls
21 lines (18 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
This file is a basic Python program that displays a message on the screen.
The contents of the message vary depending on the name provided.
For Masterclass attendees: First clone the main branch of the
PythonMasterclass repository to a branch that you call develop_xyz, where
xyz can be the initials of your name or any name you feel is appropriate (as
long as the branch does not yet exist in the repository). After you created
the repository, select it and modify this file by adding your own name
to the conditionals list below and adding a message to be printed to the
screen.
"""
name = "YourName"
if name == "Vincent":
print("Vincent is one of the instructors of the Python Masterclass")
elif name == "Anushree":
print("Anushree is the AWS support person during the Python Masterclass")
else:
print("Name is unknown, not sure what to print about this person.")