What is Python? State some programming language features of Python.

What is Python? State some programming language features of Python.

Python is a modern powerful interpreted language with objects, modules, threads, exceptions, and automatic memory managements.
Python was introduced to the world in the year 1991 by Guido van Rossum
Salient features of Python are
- Simple & Easy: Python is simple language & easy to learn.
- Free/open source: it means everybody can use python without purchasing license.
- High level language: when coding in Python one need not worry about low-level details.
- Portable: Python codes are Machine & platform independent.
- Extensible: Python program supports usage of C/ C++ codes.
- Embeddable Language: Python code can be embedded within C/C++ codes & can be used a scripting language.
- Standard Library: Python standard library contains prewritten tools for programming.
- Build-in Data Structure: contains lots of data structure like lists, numbers & dictionaries.
Explain how python is interpreted
How python is interpreted - Python program runs directly from the source code. Each type Python programs are executed code is required.......
What are the rules for local and global variables in Python?
Local and global variables - If a variable is defined outside function then it is implicitly global. If variable is assigned new value inside the function means it is local.......
Dictionary in Python
Dictionary in Python - Python's built-in data type is dictionary, which defines one-to-one relationships between keys and values.......
Post your comment