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 /C++_from_the_Ground/Chapter_3(1).ipynb | |
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 'C++_from_the_Ground/Chapter_3(1).ipynb')
-rw-r--r-- | C++_from_the_Ground/Chapter_3(1).ipynb | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/C++_from_the_Ground/Chapter_3(1).ipynb b/C++_from_the_Ground/Chapter_3(1).ipynb index 19f2cea0..9d0cf326 100644 --- a/C++_from_the_Ground/Chapter_3(1).ipynb +++ b/C++_from_the_Ground/Chapter_3(1).ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:a048620e2c0a121c8dd48d68bd57c4172e8820ecd9345c7b4ca01d8f4f4621a3" + "signature": "sha256:13095677f4efa0909d9aeb25aa7b8b57bea864fd1d9a0a797f9e06000e52dc18" }, "nbformat": 3, "nbformat_minor": 0, @@ -179,9 +179,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\n", - "\n", - "#prints a newline, a backslash and a backspace\n", + " \n", "print \"\\n\\\\\\b\"\n" ], "language": "python", @@ -300,8 +298,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\n", - "#the xor function\n", + " \n", "def xor(a,b):\n", " return (a or b)and(not(a and b))\n", "\n", |