We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75452f4 commit 7a03fd4Copy full SHA for 7a03fd4
Dictionaries.ipynb
@@ -267,6 +267,29 @@
267
"print(thisdict)"
268
]
269
},
270
+ {
271
+ "cell_type": "code",
272
+ "execution_count": 15,
273
+ "metadata": {},
274
+ "outputs": [
275
276
+ "name": "stdout",
277
+ "output_type": "stream",
278
+ "text": [
279
+ "{'brand': 'Ford', 'model': 'Mustang', 'year': 1964}\n"
280
+ ]
281
+ }
282
+ ],
283
+ "source": [
284
+ "thisdict = {\n",
285
+ " \"brand\": \"Ford\",\n",
286
+ " \"model\": \"Mustang\",\n",
287
+ " \"year\": 1964\n",
288
+ "}\n",
289
+ "mydict = thisdict.copy()\n",
290
+ "print(mydict)"
291
292
+ },
293
{
294
"cell_type": "code",
295
"execution_count": null,
0 commit comments