We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe09c59 commit 1e7ff19Copy full SHA for 1e7ff19
1 file changed
_episodes/01-short-introduction-to-Python.md
@@ -341,7 +341,7 @@ class list(object)
341
342
### Tuples
343
344
-A tuple is similar to a list in that it's an ordered sequence of elements.
+A **tuple** is similar to a list in that it's an ordered sequence of elements.
345
However, tuples can not be changed once created (they are "immutable"). Tuples
346
are created by placing comma-separated values inside parentheses `()`.
347
@@ -442,7 +442,7 @@ for key in rev.keys():
442
443
## Functions
444
445
-Defining a section of code as a function in Python is done using the `def`
+Defining a section of code as a **function** in Python is done using the `def`
446
keyword. For example a function that takes two arguments and returns their sum
447
can be defined as:
448
0 commit comments