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 8c4a425 commit f9746c4Copy full SHA for f9746c4
Sets.ipynb
@@ -87,6 +87,30 @@
87
"print(s)"
88
]
89
},
90
+ {
91
+ "cell_type": "code",
92
+ "execution_count": 5,
93
+ "metadata": {},
94
+ "outputs": [
95
96
+ "name": "stdout",
97
+ "output_type": "stream",
98
+ "text": [
99
+ "cherry\n",
100
+ "{'banana', 'apple'}\n"
101
+ ]
102
+ }
103
+ ],
104
+ "source": [
105
+ "thisset = {\"apple\", \"banana\", \"cherry\"}\n",
106
+ "\n",
107
+ "x = thisset.pop()\n",
108
109
+ "print(x)\n",
110
111
+ "print(thisset)"
112
113
+ },
114
{
115
"cell_type": "code",
116
"execution_count": null,
0 commit comments