diff options
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", |