Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions session_01/slides/session_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

# Course Overview
- 10 weeks
- Wednesday - Lesson
- Monday - Questions and Answers
- Wednesday Lesson
- Monday Questions and Answers

---

Expand Down Expand Up @@ -334,4 +334,3 @@ correct_sum = (4 + 5) * 2

# [fit] Coding Time
## Section B

5 changes: 2 additions & 3 deletions session_02/slides/session_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,14 +357,14 @@ print("HeLlO".lower()) # hello

# Slicing

```
```
# slicing from one point to another
"string"[0:6] #string
"string"[1:4] #tri

# slicing from one point to the end
"string"[0:] #string
"string"[1:] #ing
"string"[3:] #ing

# slicing from the start to another point
"string"[:0] #
Expand Down Expand Up @@ -399,4 +399,3 @@ print("The middle letter of your name is " + middle_letter)

# [fit] Coding Time
## Section A