diff options
author | debashisdeb | 2014-06-21 00:52:25 +0530 |
---|---|---|
committer | debashisdeb | 2014-06-21 00:52:25 +0530 |
commit | 7c756fcc12d21693818e58f6936cab5b7c112868 (patch) | |
tree | 009cb02ec85f4a75ac7b64239751f15361df2bfe /Programming_in_C | |
parent | 83c1bfceb1b681b4bb7253b47491be2d8b2014a1 (diff) | |
download | Python-Textbook-Companions-7c756fcc12d21693818e58f6936cab5b7c112868.tar.gz Python-Textbook-Companions-7c756fcc12d21693818e58f6936cab5b7c112868.tar.bz2 Python-Textbook-Companions-7c756fcc12d21693818e58f6936cab5b7c112868.zip |
Removed Problem Statements Completely
Diffstat (limited to 'Programming_in_C')
-rw-r--r-- | Programming_in_C/Chapter_03.ipynb | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/Programming_in_C/Chapter_03.ipynb b/Programming_in_C/Chapter_03.ipynb index bbc7d9cf..30f0abae 100644 --- a/Programming_in_C/Chapter_03.ipynb +++ b/Programming_in_C/Chapter_03.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:57f27b589000036417c51c927626e752909312f11d9fc5346eab037945b09afc" + "signature": "sha256:d8c363a7618c01354c29de02098f7db723d0768b8769439b908ad7302fccbc99" }, "nbformat": 3, "nbformat_minor": 0, @@ -29,7 +29,7 @@ "collapsed": false, "input": [ "\n", - "#Print Statement\n", + "\n", "print(\"Programming is Fun.\")" ], "language": "python", @@ -58,8 +58,6 @@ "collapsed": false, "input": [ "\n", - "\n", - "#Print statement\n", "print(\"Programming is Fun.\")\n", "print(\"And Programming in Python is even more fun\")" ], @@ -89,10 +87,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "#3.3.py\n", - "#Displaying multiple Lines of output\n", "\n", - "#Print statements using escape sequence\n", "print(\"Testing...\\n..1\\n...2\\n....3\\n\")" ], "language": "python", @@ -155,7 +150,6 @@ "input": [ "\n", "\n", - "#Variable declaration\n", "value1=50\n", "value2=25\n", "\n", @@ -192,7 +186,7 @@ "input": [ "\n", "\n", - "#Variable declarations\n", + "\n", "value1=50\n", "value2=25\n", "\n", |