diff options
Diffstat (limited to 'Practical_C_Programming/Chapter_21_1.ipynb')
-rw-r--r-- | Practical_C_Programming/Chapter_21_1.ipynb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Practical_C_Programming/Chapter_21_1.ipynb b/Practical_C_Programming/Chapter_21_1.ipynb new file mode 100644 index 00000000..8d3e6b65 --- /dev/null +++ b/Practical_C_Programming/Chapter_21_1.ipynb @@ -0,0 +1,41 @@ +{ + "metadata": { + "name": "Chapter 21" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": "Chapter 21: C's dustier corners" + }, + { + "cell_type": "heading", + "level": 3, + "metadata": {}, + "source": "Example 21.1, Page number: 401" + }, + { + "cell_type": "code", + "collapsed": false, + "input": "# Example 21.1.py\n# To check whether the character input by the user is for 'add', 'delete' or 'quit'\n\n\n# Variable declaration\nimport sys\nline = 'a'\n\n# Calculation and result\nif (line == 'a') :\n print ('Add\\n')\nelif (line == 'd') :\n print ('Delete\\n')\nelif (line == 'q') :\n print ('Quit\\n')\n sys.exit(1) \nelse :\n print ('Error:Bad command %c\\n' % line)", + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": "Add\n\n" + } + ], + "prompt_number": 1 + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |