From 680ad7fa06353fb970a6a6c29508b09c8eb3bf2d Mon Sep 17 00:00:00 2001 From: amorifertiangbe Date: Fri, 20 Mar 2026 22:06:00 -0400 Subject: [PATCH 1/5] Update 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..db355535 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 = "Amorifer Tiangbe" # TODO: Insert your name between the double quotes print(f"{name}, Welcome to the CSS course!") From 30f1522db1d9ca7c82afc2b3cb13c1cdb95a0097 Mon Sep 17 00:00:00 2001 From: amorifertiangbe Date: Fri, 20 Mar 2026 22:43:32 -0400 Subject: [PATCH 2/5] robot_speed = 5 # m/s --- labs/lab_1/lab_1a.py | 1 + 1 file changed, 1 insertion(+) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index db355535..fd90bf5d 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -14,3 +14,4 @@ def main(): if __name__ == "__main__": main() +robot_speed = 5 # m/s \ No newline at end of file From bafa13b5a1bb2a88ca28e1c7ecdddd1599c51759 Mon Sep 17 00:00:00 2001 From: amorifertiangbe Date: Fri, 20 Mar 2026 22:59:42 -0400 Subject: [PATCH 3/5] Update lab_1a.py --- 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 fd90bf5d..18fe5219 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -4,7 +4,7 @@ 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 = 3 # m/s def main(): print("Hello World!") @@ -14,4 +14,3 @@ def main(): if __name__ == "__main__": main() -robot_speed = 5 # m/s \ No newline at end of file From 2672198d2a669bbf87341c4aa58e316772cc9779 Mon Sep 17 00:00:00 2001 From: amorifertiangbe Date: Fri, 20 Mar 2026 23:00:42 -0400 Subject: [PATCH 4/5] Update lab_1a.py --- 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 18fe5219..d2410b71 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -5,6 +5,8 @@ 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 = 3 # m/s +""" + def main(): print("Hello World!") From 19984e8515da9993ec1b411c2a09fef2b8bfa74e Mon Sep 17 00:00:00 2001 From: amorifertiangbe Date: Fri, 20 Mar 2026 23:05:47 -0400 Subject: [PATCH 5/5] Update lab_1a.py --- labs/lab_1/lab_1a.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/lab_1/lab_1a.py b/labs/lab_1/lab_1a.py index d2410b71..c5ea8191 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -4,8 +4,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 = 3 # m/s -""" +This is to simulate a change made on a robot: robot_speed = 5 # m/s +This is to simulate a change made on a robot: robot_speed = 8 # m/s def main(): print("Hello World!")