Skip to content

Commit 57fa357

Browse files
committed
Print KEY VALUE
1 parent c520064 commit 57fa357

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
@@ -201,6 +201,26 @@
201201
" print(x)"
202202
]
203203
},
204+
{
205+
"cell_type": "code",
206+
"execution_count": 12,
207+
"metadata": {},
208+
"outputs": [
209+
{
210+
"name": "stdout",
211+
"output_type": "stream",
212+
"text": [
213+
"brand Ford\n",
214+
"model Mustang\n",
215+
"year 1964\n"
216+
]
217+
}
218+
],
219+
"source": [
220+
"for x, y in thisdict.items():\n",
221+
" print(x, y)"
222+
]
223+
},
204224
{
205225
"cell_type": "code",
206226
"execution_count": null,

0 commit comments

Comments
 (0)