File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,7 @@ git add * # in case there are new files added
20
20
git commit -a
21
21
git push
22
22
23
+ # while we're at it, push the class repo too:
24
+ cd ../sea-f2-python-sept14/
25
+ git commit -a
26
+ git push
Original file line number Diff line number Diff line change @@ -1007,17 +1007,26 @@ Homework
1007
1007
1008
1008
Python Power
1009
1009
1010
- Beautiful, Idiomatic Python
1011
- ----------------------------
1010
+ More reading, etc:
1011
+ ------------------
1012
1012
1013
- Transforming Code into Beautiful, Idiomatic Python:
1013
+ ** Iterators, generators, and containers: **
1014
1014
1015
- https://www.youtube.com/watch?v=OSGv2VnC0go
1015
+ A nice post that clearly lays out how all these things fit together:
1016
+
1017
+ http://nvie.com/posts/iterators-vs-generators/
1018
+
1019
+ |
1020
+ |
1021
+
1022
+ **Transforming Code into Beautiful, Idiomatic Python: **
1016
1023
1017
1024
Raymond hettinger (again) talks about Pythonic code.
1018
1025
1019
1026
A lot of it is about using iterators -- now you know what those really are.
1020
1027
1028
+ https://www.youtube.com/watch?v=OSGv2VnC0go
1029
+
1021
1030
Assignments
1022
1031
-----------
1023
1032
You can’t perform that action at this time.
0 commit comments