1
Python
python is a interpreter and general purpose high level programming language with simple and readable syntax
- Python allows to write clean code with fewer lines
- Supports multiple programming paradigms including object-oriented, functional and procedural programming
- Python is mostly used inn web development, automation, data analysis, artificial intelligence and many other fields
- It is dynamically typed
what is General Purpose?
Python can be used to build many types of application
COBOL-Common Business Oriented Language
FORTRAN-Scientific reasons
Low-Level Language-Machine Learning,Assembly Language
Programming Language-C, C++, Java, Python
Scripting Language-Python, Javascript, PHP, Bash
Python is both a programming language and a scripting language because it can be used to build complete applications as well as automate tasks
python VS cpython
Python is a high-level, interpreted programming language created by Guido van Rossum and first released in 1991. It emphasizes code readability and simplicity, allowing programmers to express concepts in fewer lines of code compared to languages like C++ or Java
CPython is the reference implementation of Python, written in C. It is the most widely used implementation of Python and serves as the standard against which other implementations are measured. CPython compiles Python code into intermediate bytecode, which is then executed by its virtual machine.
Interpreter
executes the program line by line
Stop execution when it find error and report it immediately
Top comments (0)