Number of Approaches To Develop Python Programs
Number of Approaches To Develop Python Programs
-----------------------------------------------------------------------------------
------------------------------------------------------------------------
2. By using Batch Mode Approach
-----------------------------------------------------------------------------------
------------------------------------------------------------------------
=>In Batch Mode Approach, we define set of Optmized Instructions and Saved on Some
File Name with an extension called .py (FileName.py).
=>To develop any real time application, we always go for Batch Mode.
------------------------------
Examples Softwares:
------------------------------
1. Python IDLE Shell
---------------------------------------
Third Party IDEs Used in Real Time
-----------------------------------------------
----
1. PyCharm
2. Anaconda Jupiter NoteBook
3. Anaconda Spider
4. VS Code
5. Google Clob
6. Sublime Text...etc
=>To Run the python Program from Windows Command Prompt, we use the Following
Syntax
=>Syntax: python FileName.py
OR
py FileName.py
Here "python" and "py" are tools used for Running the python Program from Windows
Command Prompt.
----------------
Examples:
---------------
E:\KVR-PYTHON-6PM\BATCH MODE>python Addopex3.py
Enter First Value:3
Enter Second Value:6.7
==============================
Val of a= 3.0
Val of b= 6.7
Sum= 9.7
==============================
OR
E:\KVR-PYTHON-4PM\BATCH MODE>py Addopex3.py
Enter First Value:3
Enter Second Value:6.7
==============================
Val of a= 3.0
Val of b= 6.7
Sum= 9.7
==============================
-----------------------------------------------------------------------------------
----------