summaryrefslogtreecommitdiff
path: root/tutorials
diff options
context:
space:
mode:
Diffstat (limited to 'tutorials')
-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.