diff options
author | hardythe1 | 2015-04-07 15:58:05 +0530 |
---|---|---|
committer | hardythe1 | 2015-04-07 15:58:05 +0530 |
commit | c7fe425ef3c5e8804f2f5de3d8fffedf5e2f1131 (patch) | |
tree | 725a7d43dc1687edf95bc36d39bebc3000f1de8f /Computer_Programming_Theory_and_Practice_/Chapter2.ipynb | |
parent | 62aa228e2519ac7b7f1aef53001f2f2e988a6eb1 (diff) | |
download | Python-Textbook-Companions-c7fe425ef3c5e8804f2f5de3d8fffedf5e2f1131.tar.gz Python-Textbook-Companions-c7fe425ef3c5e8804f2f5de3d8fffedf5e2f1131.tar.bz2 Python-Textbook-Companions-c7fe425ef3c5e8804f2f5de3d8fffedf5e2f1131.zip |
added books
Diffstat (limited to 'Computer_Programming_Theory_and_Practice_/Chapter2.ipynb')
-rwxr-xr-x | Computer_Programming_Theory_and_Practice_/Chapter2.ipynb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Computer_Programming_Theory_and_Practice_/Chapter2.ipynb b/Computer_Programming_Theory_and_Practice_/Chapter2.ipynb new file mode 100755 index 00000000..c4bc71ff --- /dev/null +++ b/Computer_Programming_Theory_and_Practice_/Chapter2.ipynb @@ -0,0 +1,41 @@ +{ + "metadata": { + "name": "Chapter2" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": "Chapter 2, Fundamentals of C language" + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": "Example 3, Page Number: CP-22" + }, + { + "cell_type": "code", + "collapsed": false, + "input": "# variable declaration\n\na = 5\nb = 7\nc = 2\n\n# calculation \n\ny = a + b / c - a % c + 2 * a\n\n# result \n\nprint \"The result is \",y\n", + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": "The result is 17\n" + } + ], + "prompt_number": 1 + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |