From 6856f1f573ec046edd2ed9da0b70203c88511a49 Mon Sep 17 00:00:00 2001 From: natisenough Date: Mon, 16 Mar 2026 22:03:13 -0400 Subject: [PATCH 1/2] Add name to lab_1a.py --- labs/lab_1/lab_1a.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index 9d15ec83..83d4aa0e 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -8,7 +8,7 @@ def main(): print("Hello World!") - name = "" # TODO: Insert your name between the double quotes + name = "Natasha Ahmed" # TODO: Insert your name between the double quotes print(f"{name}, Welcome to the CSS course!") From 81be8f9ee47c459c67e8254201f5fc1dd1f44f5a Mon Sep 17 00:00:00 2001 From: natisenough Date: Mon, 16 Mar 2026 22:14:47 -0400 Subject: [PATCH 2/2] Add comment about robot speed variable --- labs/lab_1/lab_1a.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index 9d15ec83..221ae318 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -1,6 +1,6 @@ """ lab_1a.py - +This is to simulate a change made on a robot: robot_speed = 5 # m/s 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. """