From 8e5e891cc4a94380ae7a9af7b675a3092a6ebe58 Mon Sep 17 00:00:00 2001 From: skhancock7 Date: Tue, 17 Feb 2026 15:34:08 -0500 Subject: [PATCH 1/3] Update lab_1a.py added name --- 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..01e03b79 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 = "Sarah Kate" # TODO: Insert your name between the double quotes print(f"{name}, Welcome to the CSS course!") From d9c6475fb84b844b20fad44de9bc97b8020679a9 Mon Sep 17 00:00:00 2001 From: skhancock7 Date: Tue, 17 Feb 2026 16:17:26 -0500 Subject: [PATCH 2/3] Add comment for robot speed simulation Added a comment about simulating a robot's speed. --- labs/lab_1/lab_1a.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index 01e03b79..8360cf1c 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -3,6 +3,8 @@ 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 = 5 # m/s """ def main(): From e1d78ee5de37c7cee9569f515ded11264b284394 Mon Sep 17 00:00:00 2001 From: skhancock7 Date: Thu, 19 Mar 2026 19:59:11 -0400 Subject: [PATCH 3/3] added name --- labs/lab_1/lab_1a.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index 8360cf1c..8a6a265a 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -4,13 +4,12 @@ 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 = 5 # m/s """ def main(): print("Hello World!") - name = "Sarah Kate" # TODO: Insert your name between the double quotes + name = "Sarah Kate H." print(f"{name}, Welcome to the CSS course!")