Skip to content

Commit 1e7ff19

Browse files
authored
01-short-introduction-to-Python.md: emphasize tuples and functions
1 parent fe09c59 commit 1e7ff19

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

_episodes/01-short-introduction-to-Python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ class list(object)
341341

342342
### Tuples
343343

344-
A tuple is similar to a list in that it's an ordered sequence of elements.
344+
A **tuple** is similar to a list in that it's an ordered sequence of elements.
345345
However, tuples can not be changed once created (they are "immutable"). Tuples
346346
are created by placing comma-separated values inside parentheses `()`.
347347

@@ -442,7 +442,7 @@ for key in rev.keys():
442442

443443
## Functions
444444

445-
Defining a section of code as a function in Python is done using the `def`
445+
Defining a section of code as a **function** in Python is done using the `def`
446446
keyword. For example a function that takes two arguments and returns their sum
447447
can be defined as:
448448

0 commit comments

Comments
 (0)