8000 Merge pull request #1 from ihf-code/tweaks · gelmok/intro-to-python@e0d8943 · GitHub
[go: up one dir, main page]

Skip to content

Commit e0d8943

Browse files
authored
Merge pull request ihf-code#1 from ihf-code/tweaks
tweaks
2 parents 22c0440 + ab00705 commit e0d8943

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

session_01/slides/session_1.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
# Course Overview
1111
- 10 weeks
12-
- Wednesday - Lesson
13-
- Monday - Questions and Answers
12+
- Wednesday Lesson
13+
- Monday Questions and Answers
1414

1515
---
1616

@@ -334,4 +334,3 @@ correct_sum = (4 + 5) * 2
334334

335335
# [fit] Coding Time
336336
## Section B
337-

session_02/slides/session_2.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -357,14 +357,14 @@ print("HeLlO".lower()) # hello
357357

358358
# Slicing
359359

360-
```
360+
```
361361
# slicing from one point to another
362362
"string"[0:6] #string
363363
"string"[1:4] #tri
364364
365365
# slicing from one point to the end
366366
"string"[0:] #string
367-
"string"[1:] #ing
367+
"string"[3:] #ing
368368
369369
# slicing from the start to another point
370370
"string"[:0] #
@@ -399,4 +399,3 @@ print("The middle letter of your name is " + middle_letter)
399399

400400
# [fit] Coding Time
401401
## Section A
402-

0 commit comments

Comments
 (0)
0