top of page
  • Subham Das

Python

Updated: Mar 23, 2019

Python is a high level programming language which is based on Interpreter with object oriented feature. In the year 1990-91 the language was first published by Guido van Rossum, developed at the National Research Institute of Mathematics & Computer Science(Centrum Wiskunde Informitca), Netherlands. It is free with better readability and vast set of library function. It can easily synchronize with C and Java and it is comparatively smaller programming language.


CPython is version that can easily synchronize with C library. Jython also known as JPython that can easily synchronize with Java. Iron Python This version of python works on net platform. Stackless Python supports threading. Py Py also know as 'Python in Python'. The software is written using Python. Django is python based free and open-source web framework which follows the model-view-architect pattern. Python can also be written in IDLE or it is better to start writing program in IDLE.




You can download Python IDLE from this link: https://www.python.org/

Or you may Editor also: https://www.jetbrains.com/pycharm/



How Python Interpreter Works?




From different editor or IDLE the Python Code is written then it is send to Interpreter and there Byte code is generated after the execution of the code and it ask for any type of inputs if required. After taking input it run the code gives output to their respective editors. The whole process faster than other programming language which based on Compiler.









154 views0 comments

Recent Posts

See All

Iterative Structure

If same type task is repeated by a structure till the condition is true, then it is called repetitive structure or loop. In Python two types of loop is available :- 1. while loop 2. for loop While loo

logo12.PNG
bottom of page