Skip to content

Commit b155433

Browse files
committed
fix headings
1 parent 6ca2653 commit b155433

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lectures/python_essentials.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Let's learn a bit more about them.
6262
### Primitive Data Types
6363

6464

65-
***1. Boolean Values***
65+
#### Boolean Values
6666

6767
One simple data type is **Boolean values**, which can be either `True` or `False`
6868

@@ -112,7 +112,7 @@ bools = [True, True, False, True] # List of Boolean values
112112
sum(bools)
113113
```
114114

115-
***2. Numeric Types***
115+
#### Numeric Types
116116

117117
Numeric types are also important primitive data types.
118118

@@ -222,7 +222,7 @@ You can also use the format `[start:end:step]` to specify the step
222222
a[::2]
223223
```
224224

225-
Using the negative step, you can return the sequence in a reversed order
225+
Using a negative step, you can return the sequence in a reversed order
226226

227227
```{code-cell} python3
228228
a[-2::-1] # Walk backwards from the second last element to the first element

0 commit comments

Comments
 (0)