Skip to content

Commit b64d2dc

Browse files
committed
Update README.md
Added "Comparisons" video and changed "chapter" into "part", since the whole chapter is not covered in one video.
1 parent d492ec9 commit b64d2dc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

en/python_introduction/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Let's write some code!
66

77
## Python prompt
88

9-
> For readers at home: this chapter is covered in [Python Basics: Integers, Strings, Lists, Variables and Errors](https://www.youtube.com/watch?v=MO63L4s-20U) video.
9+
> For readers at home: this part is covered in [Python Basics: Integers, Strings, Lists, Variables and Errors](https://www.youtube.com/watch?v=MO63L4s-20U) video.
1010
1111
To start playing with Python, we need to open up a *command line* on your computer. You should already know how to do that -- you learned it in the [Intro to Command Line](../intro_to_command_line/README.md) chapter.
1212

@@ -245,7 +245,7 @@ You can find a list of all available list methods in this chapter of the Python
245245

246246
## Dictionaries
247247

248-
> For readers at home: this chapter is covered in [Python Basics: Dictionaries](https://www.youtube.com/watch?v=ZX1CVvZLE6c) video.
248+
> For readers at home: this part is covered in [Python Basics: Dictionaries](https://www.youtube.com/watch?v=ZX1CVvZLE6c) video.
249249
250250
A dictionary is similar to a list, but you access values by looking up a key instead of an index. A key can be any string or number. The syntax to define an empty dictionary is:
251251

@@ -327,6 +327,8 @@ Excited for the next part? :)
327327

328328
## Compare things
329329

330+
> For readers at home: this part is covered in [Python Basics: Comparisons](https://www.youtube.com/watch?v=7bzxqIKYgf4) video.
331+
330332
A big part of programming includes comparing things. What's the easiest thing to compare? Numbers, of course. Let's see how that works:
331333

332334
>>> 5 > 2

0 commit comments

Comments
 (0)