diff options
Diffstat (limited to '_Programming_With_C/chapter9.ipynb')
-rw-r--r-- | _Programming_With_C/chapter9.ipynb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/_Programming_With_C/chapter9.ipynb b/_Programming_With_C/chapter9.ipynb index 4fbffbe5..00db2e74 100644 --- a/_Programming_With_C/chapter9.ipynb +++ b/_Programming_With_C/chapter9.ipynb @@ -25,7 +25,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# Lowercase to uppercase text conversion\n",
"\n",
"letter='heavenly feeling'\n",
"letter=list(letter)\n",
@@ -57,7 +56,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# Deviations about an average\n",
"\n",
"\n",
"Sum=0.0\n",
@@ -113,7 +111,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# Deviations about an average revisited\n",
"\n",
"\n",
"n=5\n",
@@ -168,7 +165,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# passing a three element array to a function where array elements are altered\n",
"\n",
"def modify(a):\n",
" print \"From the function after modifying the values: \"\n",
@@ -226,7 +222,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# use of global variable and transfer of of local and an array to a function\n",
"\n",
"\n",
"a=1\n",
@@ -302,7 +297,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# Reordering a list of numbers\n",
"\n",
"\n",
"def reorder(n,x):\n",
@@ -379,7 +373,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# a piglatin generator\n",
"\n",
"def countwords(english):\n",
" words=1\n",
@@ -467,7 +460,6 @@ "cell_type": "code",
"collapsed": false,
"input": [
- "# adding two tables of numbers\n",
"\n",
"\n",
"\n",
|