1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-12-15 09:38:16 +00:00

Updated to 2016 and clean cells

This commit is contained in:
cif2cif
2016-02-15 09:01:37 +01:00
parent 39897634b6
commit 4ffb1a1891
11 changed files with 353 additions and 2013 deletions

View File

@@ -18,7 +18,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2015 Carlos A. Iglesias"
"Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, © 2016 Carlos A. Iglesias"
]
},
{
@@ -41,19 +41,11 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"5\n"
]
}
],
"outputs": [],
"source": [
"def sum(a, b):\n",
" return a + b\n",
@@ -63,19 +55,11 @@
},
{
"cell_type": "code",
"execution_count": 17,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"5\n"
]
}
],
"outputs": [],
"source": [
"#keyword parameters\n",
"d = sum(a=2, b=3)\n",
@@ -84,21 +68,11 @@
},
{
"cell_type": "code",
"execution_count": 11,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"***\n",
"hi\n",
"***\n"
]
}
],
"outputs": [],
"source": [
"def greetings():\n",
" print('***')\n",
@@ -110,21 +84,11 @@
},
{
"cell_type": "code",
"execution_count": 13,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"***\n",
"hi\n",
"***\n"
]
}
],
"outputs": [],
"source": [
"# We can assign a function to a variable. Fun\n",
"d = greetings()"
@@ -132,44 +96,22 @@
},
{
"cell_type": "code",
"execution_count": 14,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"NoneType"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"outputs": [],
"source": [
"type(d)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"function"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"outputs": [],
"source": [
"type(greetings)"
]
@@ -184,20 +126,11 @@
},
{
"cell_type": "code",
"execution_count": 21,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[3, 2, 1]\n",
"Receives a list and returns the list in reverse order\n"
]
}
],
"outputs": [],
"source": [
"def reverse(l):\n",
" \"\"\"Receives a list and returns the list in reverse order\"\"\"\n",
@@ -220,20 +153,11 @@
},
{
"cell_type": "code",
"execution_count": 22,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"2\n",
"5\n"
]
}
],
"outputs": [],
"source": [
"def sum(a, b=0):\n",
" return a + b\n",
@@ -250,20 +174,11 @@
},
{
"cell_type": "code",
"execution_count": 25,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n",
"6\n"
]
}
],
"outputs": [],
"source": [
"#variable number of arguments: *\n",
"def sum(a, *l):\n",
@@ -278,20 +193,11 @@
},
{
"cell_type": "code",
"execution_count": 28,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"7\n",
"13\n"
]
}
],
"outputs": [],
"source": [
"#Packing \n",
"l = [1, 2, 3]\n",
@@ -314,20 +220,11 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"c 27\n",
"c 27\n"
]
}
],
"outputs": [],
"source": [
"def sq(x):\n",
" return x**x\n",
@@ -366,21 +263,11 @@
},
{
"cell_type": "code",
"execution_count": 33,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1 2 3 4\n",
"1,2,3,4\n",
"1,2,3,4#1|2|3|4\n"
]
}
],
"outputs": [],
"source": [
"print(1, 2, 3, 4)\n",
"print(1, 2, 3, 4, sep=',')\n",
@@ -397,21 +284,11 @@
},
{
"cell_type": "code",
"execution_count": 41,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Number: 1,2\n",
"PI #3.141592653589793#\n",
"PI # 3.14#\n"
]
}
],
"outputs": [],
"source": [
"import math\n",
"print('Number: {},{}'.format(1, 2)) #replaces [] inside the string by the arguments of format\n",
@@ -430,20 +307,11 @@
},
{
"cell_type": "code",
"execution_count": 45,
"execution_count": null,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Enter a number 5\n",
"5\n"
]
}
],
"outputs": [],
"source": [
"num = input('Enter a number ')\n",
"print(num)"
@@ -462,7 +330,7 @@
"source": [
"The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/). \n",
"\n",
"© 2015 Carlos A. Iglesias, Universidad Politécnica de Madrid."
"© 2016 Carlos A. Iglesias, Universidad Politécnica de Madrid."
]
}
],