You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you see a problem like the one below, you will need to write code. You can go to the **toggle bar** above the problem description to open a mixed-up puzzle that will help you write the code.
158
-
The mixed-up puzzle will have blocks of code that you can drag and drop to create a solution. You can also use the "Help me" button to get additional assistance if needed.
145
+
The mixed-up puzzle will have blocks of code that you can drag and drop to create a solution. You can also use the "Help me" button to get additional assistance within the puzzle if needed.
Copy file name to clipboardExpand all lines: _sources/_hidden/mooc_nested_dict/nested-wt.rst
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
Practice
2
-
=========
2
+
=============
3
3
4
4
.. raw:: html
5
5
@@ -65,8 +65,35 @@ Practice
65
65
:toggle: lock
66
66
67
67
68
+
Post-Survey
69
+
=============
70
+
71
+
.. poll:: satisfication_mooc-nested
72
+
:option_1: Very low satisfaction
73
+
:option_2: Low satisfaction
74
+
:option_3: Neither low or high satisfaction
75
+
:option_4: High satisfaction
76
+
:option_5: Very high satisfaction
77
+
:results: instructor
78
+
79
+
From 1 (Very low satisfaction) to 5 (Very high satisfaction), rate your level of<b>satisfaction with the help provided</b> (this refers to the mixed-up puzzle in the toggle bar).
Copy file name to clipboardExpand all lines: _sources/_hidden/mooc_nested_dict/post_survey.rst
-28Lines changed: 0 additions & 28 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,31 +1,3 @@
1
-
Post-Survey
2
-
===========
3
-
4
-
.. poll:: satisfication_mooc-nested
5
-
:option_1: Very low satisfaction
6
-
:option_2: Low satisfaction
7
-
:option_3: Neither low or high satisfaction
8
-
:option_4: High satisfaction
9
-
:option_5: Very high satisfaction
10
-
:results: instructor
11
-
12
-
From 1 (Very low satisfaction) to 5 (Very high satisfaction), rate your level of <b>satisfaction with the help provided</b> (this refers to the mixed-up puzzle in the toggle bar).
13
-
14
-
Explain the reason for your choice in the short answer box below.
Copy file name to clipboardExpand all lines: _sources/_hidden/mooc_nested_dict/pre_survey.rst
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ about the specified concept(s).
76
76
:option_5: I am confident in my ability to use these concepts in complex programs
77
77
:results: instructor
78
78
79
-
Familiarity of nested dictionaries in Python (dictionaries within dictionaries) and how they are structured.
79
+
Familiarity with nested dictionaries in Python (dictionaries within dictionaries) and how they are structured.
80
80
81
81
.. poll:: mooc_nested-obj-2
82
82
:option_1: I am unfamiliar with these concepts
@@ -86,7 +86,7 @@ about the specified concept(s).
86
86
:option_5: I am confident in my ability to use these concepts in complex programs
87
87
:results: instructor
88
88
89
-
Access values in a inner dictionary like <code>value_for_inner_key1 = nested_dict['outer_key']['inner_key1']</code>
89
+
How to access values in a inner dictionary like <code>value_for_inner_key1 = nested_dict['outer_key']['inner_key1']</code>
90
90
91
91
92
92
.. poll:: mooc_nested-obj-3
@@ -97,7 +97,7 @@ about the specified concept(s).
97
97
:option_5: I am confident in my ability to use these concepts in complex programs
98
98
:results: instructor
99
99
100
-
Add a new key-value pair to a inner dictionary of the given nested dictionary like <code>nested_dict['outer_key']['new_key'] = 'new_value'</code>
100
+
How to add a new key-value pair to a inner dictionary of the given nested dictionary like <code>nested_dict['outer_key']['new_key'] = 'new_value'</code>
101
101
102
102
.. poll:: mooc_nested-obj-4
103
103
:option_1: I am unfamiliar with these concepts
@@ -107,7 +107,7 @@ about the specified concept(s).
107
107
:option_5: I am confident in my ability to use these concepts in complex programs
108
108
:results: instructor
109
109
110
-
Loop through the outer items (key-value pairs) of a nested dictionary like for <code>outer_key, outer_value in nested_dict.items():</code>
110
+
How to loop through the outer items (key-value pairs) of a nested dictionary like for <code>outer_key, outer_value in nested_dict.items():</code>
111
111
112
112
.. poll:: mooc_nested-obj-5
113
113
:option_1: I am unfamiliar with these concepts
@@ -117,10 +117,10 @@ about the specified concept(s).
117
117
:option_5: I am confident in my ability to use these concepts in complex programs
118
118
:results: instructor
119
119
120
-
Loop through the inner items of a nested dictionary like for <code>inner_key, inner_value in nested_dict['outer_key'].items():</code>
120
+
How to loop through the inner items of a nested dictionary like for <code>inner_key, inner_value in nested_dict['outer_key'].items():</code>
0 commit comments