Skip to content

Commit e6c825a

Browse files
committed
Adds wrap up to this part and link to official Python tutorial
1 parent 89ae76b commit e6c825a

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

part-4.ipynb

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:c233bf101727c5056cde182a01a23f07f07d4bfdefeaf7e93814b7b6cddc0478"
4+
"signature": "sha256:7b5c09563e39ddf2ede88b8ff357dcdc654af16292c9c86e3bca2fbf703f64c2"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -782,6 +782,17 @@
782782
"metadata": {},
783783
"outputs": []
784784
},
785+
{
786+
"cell_type": "markdown",
787+
"metadata": {},
788+
"source": [
789+
"Why not always use lists instead of tuples? Tuples use less storage space than a list. So if you are reading 1000s of small records from a file, a tuple can be an efficient way to go.\n",
790+
"\n",
791+
"A practical learning tip: When learning a new language, there are many new terms and concepts. Sometimes it is helpful to see a bigger picture of how everything comes together. I'm a lover of \"Table of Contents\" since I can scan the big picture and see where something like a tuple fits in. The official Python tutorial has a very good [Table of Contents]( https://docs.python.org/3.4/tutorial/index.html), and I sometimes take 5 minutes to just click and explore something new to me.\n",
792+
"\n",
793+
"Wow! We've come a long way today. "
794+
]
795+
},
785796
{
786797
"cell_type": "code",
787798
"collapsed": false,

0 commit comments

Comments
 (0)