summaryrefslogtreecommitdiff
path: root/tutorials/module_1
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-03-28 09:05:14 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-03-28 09:05:14 -0600
commitdd92ef383f7b6f3b8b10ae12ef6b4c1d77e38fff (patch)
tree0cdee06ec9e6dda8501d3af1dc9ff9d9e663c6bd /tutorials/module_1
parent9b7bc4d07d152518e1b393f66faec394c8dff914 (diff)
Added minor changes and outline added to some tutorials
Diffstat (limited to 'tutorials/module_1')
-rw-r--r--tutorials/module_1/1_05_basics_of_python.md6
-rw-r--r--tutorials/module_1/1_open_source_software.md4
2 files changed, 6 insertions, 4 deletions
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
```
diff --git a/tutorials/module_1/1_open_source_software.md b/tutorials/module_1/1_open_source_software.md
index 924878b..d82b30a 100644
--- a/tutorials/module_1/1_open_source_software.md
+++ b/tutorials/module_1/1_open_source_software.md
@@ -1,6 +1,8 @@
# Open Source Software
-Open-source software (OSS) is a type of software that allows users to access, modify, and distribute its source code freely. It is built on principles of collaboration, transparency, and community-driven development.
+Open-source software (OSS) is a type of software that allows users to access, modify, and distribute its source code freely. It is built on principles of collaboration, transparency, and community-driven development.
+
+You've probably heard of the saying "Don't reinventing the wheel". This
### Key Principles of Open Source Software