Skip to content

Commit c87ce45

Browse files
author
antonioortegajr
committed
fix typos
1 parent 7d1dc17 commit c87ce45

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

Lesson1/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Python is a very approachable programming language.
66
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.
77

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 🐿️).
99

1010
``` python
1111
def example:
@@ -19,9 +19,9 @@ function example(){
1919
```
2020

2121
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..
2323

24-
we also use the basics of modern programing
24+
we also use the basics of modern programming
2525

2626
- Variables: values stored to be used later
2727
- 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.
4141

4242
NOTE: It is important to notice the our variable is set to 2 and not "2".
4343

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).
4545

4646
## Variable Data
4747

Lesson4/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ How you can leverage libraries to avoid "reinventing the wheel" in your scriptin
1111
## Code Online
1212

1313
- [Online - shapes.py](https://www.mycompiler.io/view/FKDxgdZn5J4)
14-
- [Online - shapes.py](https://www.mycompiler.io/edit/1hmnyNZ4ecp)
14+
- [Online - products.py](https://www.mycompiler.io/edit/1hmnyNZ4ecp)
1515

1616

1717
### Resources

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,3 @@ To Run a python file we can run the hello.py file in this repo
6262

6363
`python3 hello.py`
6464

65-
66-
67-

0 commit comments

Comments
 (0)