Skip to content

Commit fc87537

Browse files
committed
Dict MAP EX
1 parent 2078c12 commit fc87537

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Dictionaries.ipynb

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,35 @@
5656
"source": [
5757
"d['key1']"
5858
]
59+
},
60+
{
61+
"cell_type": "code",
62+
"execution_count": 5,
63+
"metadata": {},
64+
"outputs": [
65+
{
66+
"name": "stdout",
67+
"output_type": "stream",
68+
"text": [
69+
"{'brand': 'Ford', 'model': 'Mustang', 'year': 1964}\n"
70+
]
71+
}
72+
],
73+
"source": [
74+
"thisdict = {\n",
75+
" \"brand\": \"Ford\",\n",
76+
" \"model\": \"Mustang\",\n",
77+
" \"year\": 1964\n",
78+
"}\n",
79+
"print(thisdict)"
80+
]
81+
},
82+
{
83+
"cell_type": "code",
84+
"execution_count": null,
85+
"metadata": {},
86+
"outputs": [],
87+
"source": []
5988
}
6089
],
6190
"metadata": {

0 commit comments

Comments
 (0)