You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Lesson1/README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
Python is a very approachable programming language.
6
6
The most important concept to understand first is that indention and white space is used as syntax. What this means is that the indention you use must be consistent.
7
7
8
-
Most other languages use symbolic syntax. Like javascript and "squirrelly" braces.
8
+
Most other languages use symbolic syntax. Like javascript and the squirrelly braces (not their real name 🐿️).
9
9
10
10
```python
11
11
def example:
@@ -19,9 +19,9 @@ function example(){
19
19
```
20
20
21
21
In python the white space before the return tells the us this is in the function
22
-
I js the return is inside opening and closing curly braces to let us know.
22
+
In javascript the return is inside opening and closing curly braces to let us know what is in the function..
23
23
24
-
we also use the basics of modern programing
24
+
we also use the basics of modern programming
25
25
26
26
- Variables: values stored to be used later
27
27
- Conditionals: statements to be evaluated like "if"
@@ -41,7 +41,7 @@ Now we have stored the variable my_variable as the value of the number 2.
41
41
42
42
NOTE: It is important to notice the our variable is set to 2 and not "2".
43
43
44
-
The first is a number and the other is a string.
44
+
The 2 is a number and the "2" would be a string (like a letter in a word).
0 commit comments