diff options
Diffstat (limited to 'Practical_C_Programming/Chapter_23_1.ipynb')
-rw-r--r-- | Practical_C_Programming/Chapter_23_1.ipynb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Practical_C_Programming/Chapter_23_1.ipynb b/Practical_C_Programming/Chapter_23_1.ipynb new file mode 100644 index 00000000..065813d7 --- /dev/null +++ b/Practical_C_Programming/Chapter_23_1.ipynb @@ -0,0 +1,41 @@ +{ + "metadata": { + "name": "Chapter 23" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "heading", + "level": 1, + "metadata": {}, + "source": "Chapter 23: Programming adages" + }, + { + "cell_type": "heading", + "level": 3, + "metadata": {}, + "source": "Example 23.1, Page number: 447" + }, + { + "cell_type": "code", + "collapsed": false, + "input": "# Example 23.1.py\n# To check whether the number input by the user is 2 or not\n\n\n# Variable declaration\nnumber = 2\n\n# Calculation and result\nif (number != 2) :\n print ('Number is not two\\n')\nelse :\n print ('Number is two\\n')", + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": "Number is two\n\n" + } + ], + "prompt_number": 1 + } + ], + "metadata": {} + } + ] +}
\ No newline at end of file |