diff --git a/exercises/ex01_print.py b/exercises/ex01_print.py index 973ccd3..759c32d 100644 --- a/exercises/ex01_print.py +++ b/exercises/ex01_print.py @@ -8,7 +8,14 @@ """ # 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) +print("Hello") # 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