summaryrefslogtreecommitdiff
path: root/tutorials/1_05_basics_of_python.md
diff options
context:
space:
mode:
authorChristian Kolset <christian.kolset@gmail.com>2025-03-11 22:54:02 -0600
committerChristian Kolset <christian.kolset@gmail.com>2025-03-11 22:54:02 -0600
commit85f2c7116385d1d0ce17e05c0d25c6880d373e3c (patch)
treea6b26fa52160ce6cdfb7f9bc0ea9c4394d0ec9c9 /tutorials/1_05_basics_of_python.md
parenta05b8ed78049796abe23260ff54c9649e5f72637 (diff)
Included blocks section under syntax>indentation.
Diffstat (limited to 'tutorials/1_05_basics_of_python.md')
-rw-r--r--tutorials/1_05_basics_of_python.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorials/1_05_basics_of_python.md b/tutorials/1_05_basics_of_python.md
index cb74910..59a9c63 100644
--- a/tutorials/1_05_basics_of_python.md
+++ b/tutorials/1_05_basics_of_python.md
@@ -3,8 +3,8 @@
This page contains important fundamental concepts used in Python such as syntax, operators, order or precedence and more.
## Syntax
-### Indentations
-In python *indentations* or the space at the start of each line, signifies a block of code. This becomes important when we start working with function and loops.
+### Indentations and blocks
+In python *indentations* or the space at the start of each line, signifies a block of code. This becomes important when we start working with function and loops. We will talk more about this in the controls structures tutorial.
### Comments
Comments can be added to your code using the hash operator (#). Any text behind the comment operator till the end of the line will be rendered as a comment.
If you have an entire block of text or code that needs to be commented out, the triple quotation marks (""") can be used. Once used all the code after it will be considered a comment until the comment is ended with the triple quotation marks.