File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 9
9
10
10
# Course Overview
11
11
- 10 weeks
12
- - Wednesday - Lesson
13
- - Monday - Questions and Answers
12
+ - Wednesday — Lesson
13
+ - Monday — Questions and Answers
14
14
15
15
---
16
16
@@ -334,4 +334,3 @@ correct_sum = (4 + 5) * 2
334
334
335
335
# [ fit] Coding Time
336
336
## Section B
337
-
Original file line number Diff line number Diff line change @@ -357,14 +357,14 @@ print("HeLlO".lower()) # hello
357
357
358
358
# Slicing
359
359
360
- ```
360
+ ```
361
361
# slicing from one point to another
362
362
"string"[0:6] #string
363
363
"string"[1:4] #tri
364
364
365
365
# slicing from one point to the end
366
366
"string"[0:] #string
367
- "string"[1 :] #ing
367
+ "string"[3 :] #ing
368
368
369
369
# slicing from the start to another point
370
370
"string"[:0] #
@@ -399,4 +399,3 @@ print("The middle letter of your name is " + middle_letter)
399
399
400
400
# [ fit] Coding Time
401
401
## Section A
402
-
You can’t perform that action at this time.
0 commit comments