8000 tweaks by jacobwyke · Pull Request #1 · ihf-code/python · GitHub
[go: up one dir, main page]

Skip to content

tweaks #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 20, 2023
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

0