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 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-
Original file line number Diff line number Diff 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-
You can’t perform that action at this time.
0 commit comments