Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions labs/lab_1/bwsi-css-labs.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"folders": [
{
"path": "../.."
},
{
"path": "../.."
}
]
}
5 changes: 4 additions & 1 deletion labs/lab_1/lab_1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@

The first lab in the BWSI CSS course. To complete this lab, fill out the variable on line 10
with your name. Then, save the code, add it to the staging area, and commit it to the Git tree.

This is to simulate a change made on a robot: robot_speed = 8 # m/s
"""

def main():
print("Hello World!")

name = "" # TODO: Insert your name between the double quotes
name = "Anika Venkatesh" # TODO: Insert your name between the double quotes

print(f"{name}, Welcome to the CSS course!")
print("Hi everyone! I'm Anika, a sophomore from California. I am really interested in medicine and statistics, and co-founded a medicine-focused club at my school. My hobbies include dance and music. I'm looking forward to learning more about computer science through this course!")

if __name__ == "__main__":
main()