Skip to content

Commit c520064

Browse files
committed
Print Values
1 parent 63ab7ad commit c520064

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Dictionaries.ipynb

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,26 @@
181181
" print(thisdict[x])"
182182
]
183183
},
184+
{
185+
"cell_type": "code",
186+
"execution_count": 11,
187+
"metadata": {},
188+
"outputs": [
189+
{
190+
"name": "stdout",
191+
"output_type": "stream",
192+
"text": [
193+
"Ford\n",
194+
"Mustang\n",
195+
"1964\n"
196+
]
197+
}
198+
],
199+
"source": [
200+
"for x in thisdict.values():\n",
201+
" print(x)"
202+
]
203+
},
184204
{
185205
"cell_type": "code",
186206
"execution_count": null,

0 commit comments

Comments
 (0)