From d176ad7d7cd7611cceac0b43dc007b6468683da0 Mon Sep 17 00:00:00 2001 From: bekita812 Date: Sat, 19 Sep 2026 11:14:42 -0700 Subject: [PATCH] Fix variable declarations and formatting in practice.py --- lesson1/classwork/practice.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lesson1/classwork/practice.py b/lesson1/classwork/practice.py index e419726..d08c585 100644 --- a/lesson1/classwork/practice.py +++ b/lesson1/classwork/practice.py @@ -1,24 +1,27 @@ # Problem 1 # Create a variable for your favorite number and print it. - +favorite number = 24 # Problem 2 # Create a variable for your height in meters and print it. - +height= 1.3716 meters # Problem 3 # Create a variable for your favorite animal and print it in a full sentence. - +favorite animal = peacock # Problem 4 # Create two variables: one for your first name and one for your last name. # Print them on 2 separate lines. - - +first name = Bekhiyta +last name = Ahmedin # Problem 5 # Create 3 variables: your first name, your age, and your favorite color. # Print them on the same line in a full sentence. +first name = bekhiyta +my age = 10 +favorite color = mint green