From eb2830349fd1892ec68659c22bab73f26255e268 Mon Sep 17 00:00:00 2001 From: Christian Kolset Date: Tue, 29 Apr 2025 19:02:29 -0600 Subject: Fixed minor syntax issues with formating of markdown and latex files --- tutorials/module_1/basics_of_python.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tutorials/module_1/basics_of_python.md') diff --git a/tutorials/module_1/basics_of_python.md b/tutorials/module_1/basics_of_python.md index 7654e92..0df9296 100644 --- a/tutorials/module_1/basics_of_python.md +++ b/tutorials/module_1/basics_of_python.md @@ -5,12 +5,14 @@ This page contains important fundamental concepts used in Python such as syntax, ## Syntax ### 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.f ## Operators In python, operators are special symbols or keywords that perform operations on values or variables. This section covers some of the most common operator that you will see in this course. + ### Arithmetic operators | Operator | Name | | --- | --- | -- cgit v1.2.3