From 93c2e725db8b14128dc6123264242261e04d3099 Mon Sep 17 00:00:00 2001 From: itsanikav Date: Tue, 17 Feb 2026 18:04:35 -0800 Subject: [PATCH 1/6] 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..b8ce6aa5 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 = "Anika Venkatesh" # TODO: Insert your name between the double quotes print(f"{name}, Welcome to the CSS course!") From 8e8fe69e28752a644c0e8a7aea064e74af08879d Mon Sep 17 00:00:00 2001 From: itsanikav Date: Tue, 17 Feb 2026 18:12:46 -0800 Subject: [PATCH 2/6] Update lab_1a.py --- 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 b8ce6aa5..d8d6388b 100644 --- a/labs/lab_1/lab_1a.py +++ b/labs/lab_1/lab_1a.py @@ -11,6 +11,7 @@ def main(): 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() From 005ce2c20a60c21bec57ce544decefd83409cd58 Mon Sep 17 00:00:00 2001 From: itsanikav Date: Tue, 17 Feb 2026 18:19:58 -0800 Subject: [PATCH 3/6] Add comment about robot speed variable --- 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 d8d6388b..0f92a970 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 b80494300dc554a6c00ab9e4f3a53d18922f1f86 Mon Sep 17 00:00:00 2001 From: itsanikav Date: Tue, 17 Feb 2026 18:40:50 -0800 Subject: [PATCH 4/6] 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 0f92a970..8e4fa682 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 = 5 # m/s +This is to simulate a change made on a robot: robot_speed = 8 # m/s """ def main(): From 634d4e6fa082a52d55b3dfe9d508007c28e14b56 Mon Sep 17 00:00:00 2001 From: itsanikav Date: Tue, 17 Feb 2026 18:41:38 -0800 Subject: [PATCH 5/6] 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 0f92a970..b6732cfa 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 = 5 # m/s +This is to simulate a change made on a robot: robot_speed = 3 # m/s """ def main(): From 7768bd7b67dff4f2f496351c17be4cc47abde3c8 Mon Sep 17 00:00:00 2001 From: itsanikav Date: Wed, 18 Feb 2026 15:27:40 -0800 Subject: [PATCH 6/6] Create bwsi-css-labs.code-workspace --- labs/lab_1/bwsi-css-labs.code-workspace | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 labs/lab_1/bwsi-css-labs.code-workspace diff --git a/labs/lab_1/bwsi-css-labs.code-workspace b/labs/lab_1/bwsi-css-labs.code-workspace new file mode 100644 index 00000000..39f01551 --- /dev/null +++ b/labs/lab_1/bwsi-css-labs.code-workspace @@ -0,0 +1,10 @@ +{ + "folders": [ + { + "path": "../.." + }, + { + "path": "../.." + } + ] +} \ No newline at end of file