diff options
author | debashisdeb | 2014-06-20 15:42:42 +0530 |
---|---|---|
committer | debashisdeb | 2014-06-20 15:42:42 +0530 |
commit | 83c1bfceb1b681b4bb7253b47491be2d8b2014a1 (patch) | |
tree | f54eab21dd3d725d64a495fcd47c00d37abed004 /Beginning_C_By_Ivon_Horton/chapter14.ipynb | |
parent | a78126bbe4443e9526a64df9d8245c4af8843044 (diff) | |
download | Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.gz Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.tar.bz2 Python-Textbook-Companions-83c1bfceb1b681b4bb7253b47491be2d8b2014a1.zip |
removing problem statements
Diffstat (limited to 'Beginning_C_By_Ivon_Horton/chapter14.ipynb')
-rw-r--r-- | Beginning_C_By_Ivon_Horton/chapter14.ipynb | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/Beginning_C_By_Ivon_Horton/chapter14.ipynb b/Beginning_C_By_Ivon_Horton/chapter14.ipynb index 42a4f7a7..c351c6f1 100644 --- a/Beginning_C_By_Ivon_Horton/chapter14.ipynb +++ b/Beginning_C_By_Ivon_Horton/chapter14.ipynb @@ -1,6 +1,7 @@ { "metadata": { - "name": "" + "name": "", + "signature": "sha256:275b458b34ae91067224e50705db107812d45fc58e5291ede57a7d2fe00a2167" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,9 +28,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\"\"\"\n", - "Classifying wide characters\n", - "\"\"\"\n", + "\n", "\n", "import string\n", "import sys\n", @@ -89,9 +88,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\"\"\"\n", - "Finding occurrences of one wide character string in another\n", - "\"\"\"\n", + "\n", "\n", "print \"Enter a string of less than 100 characters: \",\n", "text = raw_input()\n", @@ -170,9 +167,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\"\"\"\n", - "Working with complex numbers\n", - "\"\"\"\n", + "\n", "\n", "cx = 1.0 + 3.0j\n", "cy = 1.0 - 4.0j\n", @@ -224,9 +219,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\"\"\"\n", - "Joining threads\n", - "\"\"\"\n", + "\n", "\n", "from threading import Thread\n", "\n", @@ -283,9 +276,7 @@ "cell_type": "code", "collapsed": false, "input": [ - "\"\"\"\n", - "Thread operations\n", - "\"\"\"\n", + "\n", "\n", "from threading import Thread\n", "import math\n", |