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 2078c12 commit fc87537Copy full SHA for fc87537
Dictionaries.ipynb
@@ -56,6 +56,35 @@
56
"source": [
57
"d['key1']"
58
]
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
84
+ "execution_count": null,
85
86
+ "outputs": [],
87
+ "source": []
88
}
89
],
90
"metadata": {
0 commit comments