Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions episodes/01-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

::::::::::::::::::::::::::::::::::::::::::::::::::

Expand Down
Loading