commit f0cb46696e2bce0db61a23157de9f5971b1f02a6 Author: Freena S. Koikoi Date: Fri Jun 2 14:33:14 2023 +0000 trying this diff --git a/Python/.vscode/Untitled-1.ipynb b/Python/.vscode/Untitled-1.ipynb new file mode 100644 index 0000000..6c94956 --- /dev/null +++ b/Python/.vscode/Untitled-1.ipynb @@ -0,0 +1,67 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "96.25\n" + ] + }, + { + "data": { + "text/plain": [ + "8" + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "inp = input('Hello Chuck')\n", + "print(inp)\n", + "hours = 36\n", + "rate = 3.75\n", + "pay = hours * rate\n", + "print(pay)\n", + "width = 18\n", + "height = 13.0\n", + "width//3" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.9.2 64-bit", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.2 (default, Feb 28 2021, 17:03:44) \n[GCC 10.2.1 20210110]" + }, + "orig_nbformat": 4, + "vscode": { + "interpreter": { + "hash": "31f2aee4e71d21fbe5cf8b01ff0e069b9275f58929596ceb00d14d90e3e16cd6" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Python/.vscode/launch.json b/Python/.vscode/launch.json new file mode 100644 index 0000000..c612c97 --- /dev/null +++ b/Python/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: Flask", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "app.py", + "FLASK_DEBUG": "1" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ], + "jinja": true, + "justMyCode": true + } + ] +} \ No newline at end of file diff --git a/Python/.vscode/practice1.py b/Python/.vscode/practice1.py new file mode 100644 index 0000000..08b1d7e --- /dev/null +++ b/Python/.vscode/practice1.py @@ -0,0 +1,7 @@ +inp = input('Enter Hours') +print(inp) +Hour = 20 +Rate = 10 +Pay = Hour * Rate +print(Pay) +