summaryrefslogtreecommitdiff
path: root/Computer_Programming,_Theory_and_Practice/Chapter2.ipynb
diff options
context:
space:
mode:
authorhardythe12015-07-03 12:23:43 +0530
committerhardythe12015-07-03 12:23:43 +0530
commit5a86a20b9de487553d4ef88719fb0fd76a5dd6a7 (patch)
treedb67ac5738a18b921d9a8cf6e86f402703f30bdf /Computer_Programming,_Theory_and_Practice/Chapter2.ipynb
parent37d315828bbfc0f5cabee669d2b9dd8cd17b5154 (diff)
downloadPython-Textbook-Companions-5a86a20b9de487553d4ef88719fb0fd76a5dd6a7.tar.gz
Python-Textbook-Companions-5a86a20b9de487553d4ef88719fb0fd76a5dd6a7.tar.bz2
Python-Textbook-Companions-5a86a20b9de487553d4ef88719fb0fd76a5dd6a7.zip
add/remove books
Diffstat (limited to 'Computer_Programming,_Theory_and_Practice/Chapter2.ipynb')
-rwxr-xr-xComputer_Programming,_Theory_and_Practice/Chapter2.ipynb41
1 files changed, 0 insertions, 41 deletions
diff --git a/Computer_Programming,_Theory_and_Practice/Chapter2.ipynb b/Computer_Programming,_Theory_and_Practice/Chapter2.ipynb
deleted file mode 100755
index c4bc71ff..00000000
--- a/Computer_Programming,_Theory_and_Practice/Chapter2.ipynb
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "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