Cambios cgarcia

parent bb4b67a3
......@@ -836,16 +836,14 @@
},
{
"cell_type": "code",
"execution_count": 72,
"execution_count": 73,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[1, 1, 2, 3, 5, 8, 13]\n",
"{89, 34, 21, 55}\n",
"bla bla bla\n"
"{34, 21, 55, 89}\n"
]
}
],
......@@ -854,12 +852,8 @@
"b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]\n",
"\n",
"coincide=[]\n",
"\n",
"A=set(a)\n",
"B=set(b)\n",
"=A.difference(B)\n",
"print(C)\n",
"print(\"bla bla bla\")"
"coincide=set(a).difference(b)\n",
"print(coincide)\n"
]
},
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment