From ab00705c0f541c0d1985b07f371929c70012b8a6 Mon Sep 17 00:00:00 2001 From: Jacob Wyke Date: Fri, 20 Jan 2023 19:10:47 +0000 Subject: [PATCH] tweaks --- session_01/slides/session_1.md | 5 ++--- session_02/slides/session_2.md | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/session_01/slides/session_1.md b/session_01/slides/session_1.md index d5a1c96c..2beccc00 100644 --- a/session_01/slides/session_1.md +++ b/session_01/slides/session_1.md @@ -9,8 +9,8 @@ # Course Overview - 10 weeks -- Wednesday - Lesson -- Monday - Questions and Answers +- Wednesday — Lesson +- Monday — Questions and Answers --- @@ -334,4 +334,3 @@ correct_sum = (4 + 5) * 2 # [fit] Coding Time ## Section B - diff --git a/session_02/slides/session_2.md b/session_02/slides/session_2.md index 3acb33ed..ba843121 100644 --- a/session_02/slides/session_2.md +++ b/session_02/slides/session_2.md @@ -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] # @@ -399,4 +399,3 @@ print("The middle letter of your name is " + middle_letter) # [fit] Coding Time ## Section A -