From 643c191593e4429cdf0afe050606414a9a09d5f1 Mon Sep 17 00:00:00 2001 From: Rex Barzee Date: Sat, 21 Sep 2024 00:19:51 +0100 Subject: [PATCH] Embed most of the Microsoft videos from YouTube instead of the Microsoft site that seems to change every year or so. --- docs/lesson03/prepare.html | 20 ++++++++++++++++++++ docs/lesson07/prepare.html | 10 ++++++++++ docs/lesson09/prepare.html | 33 +++++++++++++++++++++++++++++++++ docs/lesson10/prepare.html | 11 +++++++++++ docs/lesson11/prepare.html | 25 +++++++++++++++++++++++++ 5 files changed, 99 insertions(+) diff --git a/docs/lesson03/prepare.html b/docs/lesson03/prepare.html index 5aa6f18..ebe86df 100644 --- a/docs/lesson03/prepare.html +++ b/docs/lesson03/prepare.html @@ -47,18 +47,38 @@

Videos

diff --git a/docs/lesson07/prepare.html b/docs/lesson07/prepare.html index 61c1b6e..8e9c90b 100644 --- a/docs/lesson07/prepare.html +++ b/docs/lesson07/prepare.html @@ -46,11 +46,21 @@

Videos

  • Lists (12 minutes) +
  • Loops (6 minutes) +
  • diff --git a/docs/lesson09/prepare.html b/docs/lesson09/prepare.html index a154b96..b01d678 100644 --- a/docs/lesson09/prepare.html +++ b/docs/lesson09/prepare.html @@ -40,6 +40,39 @@

    09 Prepare: Text Files

    a file. During this lesson, you will learn how to write Python code that reads text from text files.

    +

    Videos

    +

    Watch the following three videos from Microsoft about writing + Python code to work with files.

    + + +

    Concepts

    Broadly speaking, there are two types of files: text files and binary files. A text file stores words and numbers as diff --git a/docs/lesson10/prepare.html b/docs/lesson10/prepare.html index 0c3e391..bb7faab 100644 --- a/docs/lesson10/prepare.html +++ b/docs/lesson10/prepare.html @@ -52,10 +52,21 @@

    Videos

  • Error Handling Concepts (13 minutes) +
    +
  • Error Handling Demonstration (4 minutes) +
  • diff --git a/docs/lesson11/prepare.html b/docs/lesson11/prepare.html index 4745444..effd5b0 100644 --- a/docs/lesson11/prepare.html +++ b/docs/lesson11/prepare.html @@ -645,6 +645,31 @@

    Example - Sorting a Compound List

    Videos

    +

    These two Microsoft videos might help you understand lambda + functions more deeply.

    + + +

    If you wish to learn more about functional programming in Python, watch these videos by Dan Bader.