From dd92ef383f7b6f3b8b10ae12ef6b4c1d77e38fff Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Fri, 28 Mar 2025 09:05:14 -0600 Subject: Added minor changes and outline added to some tutorials --- tutorials/module_1/1_05_basics_of_python.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tutorials/module_1/1_05_basics_of_python.md') diff --git a/tutorials/module_1/1_05_basics_of_python.md b/tutorials/module_1/1_05_basics_of_python.md index 5cc9aee..48952c6 100644 --- a/tutorials/module_1/1_05_basics_of_python.md +++ b/tutorials/module_1/1_05_basics_of_python.md @@ -106,9 +106,9 @@ A **variable** in Python is a name that stores a value, allowing you to use and It is common in low-level computer languages to declare the datatype if the variable. In python, the datatype is set whilst you assign it. We assign values to variables using a single `=`. ```python -x = 10 # Integer -y = 3.14 # Float -name = "Joe" # String +x = 10 # Integer +y = 3.14 # Float +name = "Joe" # String is_valid = True # Boolean ``` -- cgit v1.2.3