Skip to content
This repository was archived by the owner on Jun 9, 2021. It is now read-only.

Commit 6856bc9

Browse files
committed
added to session 6 notes
1 parent 93a4b98 commit 6856bc9

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

materials/source/notes/session06.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,27 @@ A collection of notes to go over in class, to keep things organized.
1212
Lightning Talks
1313
===============
1414

15+
Marlon M Estrada
16+
17+
Ali Dehghani
18+
1519
Alinafe Matenda
1620

1721
Daniel W Kuchan
1822

1923
Kathryn Egan
2024

25+
Feedback
26+
========
27+
28+
We got the results of the feedback survey last week.
29+
30+
We really do read the comments and try to improve the class as we go.
31+
32+
So Thanks!
33+
34+
And you'll get another chance at the end of class, which we also appreciate.
35+
2136

2237
Issues that came up during the week.
2338
====================================
@@ -32,3 +47,26 @@ dict as switch -- how do you leave the loop?
3247

3348
Let's look at Eowyn's solution...
3449

50+
51+
globals??
52+
---------
53+
54+
a number of you have been putting code in the global (module) namespace:
55+
56+
.. code-block:: python
57+
58+
the_dict = {}
59+
60+
def fun():
61+
...
62+
the_dict = something()
63+
64+
What's wrong with this?
65+
66+
More on keyword arguments:
67+
--------------------------
68+
69+
:ref:`keyword_only_arguments`
70+
71+
72+

0 commit comments

Comments
 (0)