From 7efee03fca247760abe208a2ce86fb910de26cfb Mon Sep 17 00:00:00 2001 From: Scott Archer-Nicholls Date: Tue, 21 Apr 2026 12:24:51 +0100 Subject: [PATCH] feat: Turned keypoints in intro into sentences --- episodes/01-introduction.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/episodes/01-introduction.md b/episodes/01-introduction.md index 73260c8..d7f3726 100644 --- a/episodes/01-introduction.md +++ b/episodes/01-introduction.md @@ -258,11 +258,13 @@ To summarise the position, the recommendation is that you **avoid** getting help :::::::::::::::::::::::::::::::::::::::: keypoints -- variables -- lists -- indexing -- loops -- conditionals +- Assign values to variables using `=` +- Generate lists using square brackets `[]` +- Use indexes inside `[]`, starting at 0, to select characters from strings and items from lists +- Use `for` to loop through items in iterable objects +- Make conditional expressions using `==`, `!=`, `>`, `<`, `>=` and `<=` +- Use `f'{}'` to embed formatted variables inside strings +- Avoid use of generative AI for this course ::::::::::::::::::::::::::::::::::::::::::::::::::