Skip to content

Commit bf724db

Browse files
committed
changes
1 parent d78cf0d commit bf724db

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

07-python-sets.ipynb

+22
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,28 @@
221221
"print(my_set)\n"
222222
]
223223
},
224+
{
225+
"cell_type": "code",
226+
"execution_count": 3,
227+
"metadata": {},
228+
"outputs": [
229+
{
230+
"ename": "TypeError",
231+
"evalue": "'tuple' object is not callable",
232+
"output_type": "error",
233+
"traceback": [
234+
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
235+
"\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)",
236+
"\u001b[1;32md:\\Python\\python_practice\\07-python-sets.ipynb Cell 12\u001b[0m in \u001b[0;36m<cell line: 1>\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> <a href='vscode-notebook-cell:/d%3A/Python/python_practice/07-python-sets.ipynb#X14sZmlsZQ%3D%3D?line=0'>1</a>\u001b[0m \u001b[39mset\u001b[39m \u001b[39m=\u001b[39m\u001b[39mset\u001b[39;49m(\u001b[39m1\u001b[39;49m,\u001b[39m3\u001b[39;49m,\u001b[39m2\u001b[39;49m,\u001b[39m4\u001b[39;49m,\u001b[39m5\u001b[39;49m,\u001b[39m4\u001b[39;49m,\u001b[39m3\u001b[39;49m,\u001b[39m7\u001b[39;49m,\u001b[39m8\u001b[39;49m,\u001b[39m9\u001b[39;49m)\n\u001b[0;32m <a href='vscode-notebook-cell:/d%3A/Python/python_practice/07-python-sets.ipynb#X14sZmlsZQ%3D%3D?line=1'>2</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39mset\u001b[39m)\n",
237+
"\u001b[1;31mTypeError\u001b[0m: 'tuple' object is not callable"
238+
]
239+
}
240+
],
241+
"source": [
242+
"set =set(1,3,2,4,5,4,3,7,8,9)\n",
243+
"print(set)"
244+
]
245+
},
224246
{
225247
"cell_type": "code",
226248
"execution_count": null,

myfile.text

Whitespace-only changes.

0 commit comments

Comments
 (0)