What is PYTHON
PYTHON

What is PYTHON?

 

Python is a clear and powerful object oriented programming dialect similar to Tcl,Java,Scheme,Perl.

Python is a general-purpose language which expose it can be build pretty much anything, which will be made simple with the right apparatuses/libraries.

Professionally, Python is incredible for backend web improvement, data investigation, computerized reasoning, and scientific computing.Numerous engineers have also  utilized python to build profitability tools,games, and desktop applications, so there are  lot of assets to help you learn to do these too.

Some of Python’s striking features(PYTHON FEATURES):

  1. Python utilizes an rich syntax for readable programs.
  2. Python is a lithe(flexible) dialect (programming language)that makes it easy to get your program working. This creates Python a perfect dialect for prototype improvement and other ad-hoc programming tasks, except compromising maintainability.
  3. A variety of fundamental data types are available: numbers(floating point, integers complex, and unlimited-length long integers), strings(both ASCII and Unicode),lists, dictionaries.
  4. Python uploads object oriented programming with classes and multiple inheritance.
  5. Code can be assembled into modules and packages.
  6. The dialect supports raising and getting exceptions, resulting in cleaner mistake taking care of.
  7. Information types are firmly yet dynamically written. Blending inconsistent types(e.g. endeavoring(try hard) to include a string and a number)causes an anamoly to be raised.
  8. Python contains advances programming features, for example, generators and list comprehensions.
  9. Automatic junk collection liberates you from the bothers of memory administration.
  10. The expansive standard library supports numerous  common programming tasks, for example, connecting with web servers, regular expressions, and document taking care of.
  11. Python’s interactive mode makes it simple to test short scraps of code. There’s additionally a packaged advancement environment called IDLE.
  12. The Python interpreter is effectively extended by including new modules actualized in an compiled dialect, for example, C or C++.
  13. The interpreter can likewise be installed into an application to give a programmable interface.
  14. Python runs on many different PCs and operating systems such as Windows, MacOS, numerous brands of Unix,OS/2
  15. Python is copyrighted yet put under an open source permit, implying that Python can be freely utilized and distributed, notwithstanding for business purposes.

Recommended Posts

C++ Programming

Visibility modes in C++

In C++, visibility modes refer to the accessibility of class members (such as variables and functions) from different parts of a program. C++ provides three visibility modes: public, private, and protected. These modes control the access levels of class members concerning the outside world and derived classes. Public: Members declared as public are accessible from […]

Rekha Setia 
C++ Programming

Inheritance in C++

In C++, inheritance is a fundamental concept of object-oriented programming (OOP) that allows you to create a new class based on an existing class, known as the base or parent class. The new class is called the derived or child class. Inheritance facilitates code reuse and supports the creation of a hierarchy of classes. There […]

Rekha Setia 
C++ Programming

C++ Classes and Objects

In C++, classes and objects are fundamental concepts that support object-oriented programming (OOP). Here’s a brief overview of classes and objects in C++: Classes: In C++, a class is a user-defined data type that allows you to encapsulate data members and member functions into a single unit. Classes are the building blocks of object-oriented programming […]

Rekha Setia 

Leave A Comment