From 5b1e8b055542b671c8dd61fe39a78f3b6e106a46 Mon Sep 17 00:00:00 2001 From: Baygeldi Date: Mon, 13 Oct 2025 12:13:42 +0800 Subject: [PATCH 1/2] Solved --- exercises/ex01_print.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/exercises/ex01_print.py b/exercises/ex01_print.py index 973ccd3..713d909 100644 --- a/exercises/ex01_print.py +++ b/exercises/ex01_print.py @@ -8,7 +8,13 @@ """ # TODO: Print "Hello, Python!" +print("Hello, Python!") # TODO: Create a variable 'name' with your full name and print "My name is " +name = "Baygeldi" +print("My name is " + name) # TODO: Create two numbers, add them together and print the result +num1 = 10.102 +num2 = 12.32 +print(num1 + num2) \ No newline at end of file From 536b551a05f13f9e1d937dc1a830bba0b5b79a32 Mon Sep 17 00:00:00 2001 From: Baygeldi Date: Wed, 15 Oct 2025 19:22:40 +0800 Subject: [PATCH 2/2] Added comment --- exercises/ex01_print.py | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/ex01_print.py b/exercises/ex01_print.py index 713d909..759c32d 100644 --- a/exercises/ex01_print.py +++ b/exercises/ex01_print.py @@ -13,6 +13,7 @@ # TODO: Create a variable 'name' with your full name and print "My name is " name = "Baygeldi" print("My name is " + name) +print("Hello") # TODO: Create two numbers, add them together and print the result num1 = 10.102