Skip to main content

How python is different from another language

 The biggest strength of python is huge collection of standard which can be used for the following : -

  1. Machine learning 
  2. GUI application ( like kivy , tkinter , pyQt ) etc.
  3. Web frame work like Django ( used by youtube , instagram , dropbox )
  4. Image processing (like open CU , pillow )
  5. web scripting ( like scrapy , beautiful saup , selenium )
  6. Test processing 
  7. Multimedia
  8. Scientific computing 
  9. Text processing and many more....

python features


python provides lots of features that are listed below.

1) easy to learn and use :- python is easy to learn and use it is developer frendly and high level language programming.

2) expressive language :- python is an interpreted language the code line by line at a time this wakes debugging easy and thus suitable for beginners. 

3) cross - platform : - python can run equally on different platforms such as window , macintosh etc. so we can say that python is a portable language.

4) free and open source : - python language is freely available at official web add the source code is also available therefore is open source.

5) object oriented language : - python supports object oriented language and concepts of classes and objects come into existence.

5) extensible : - it implies that other language such as C/C++ can be used to compile code and thus it can be used further in our python code.

8) large standard library : - python has a large and broad library and provides rich set of module and fictions for rapid application development.

9) GUI programming support : - graphical user interfaces can be developed using python.

10) integrated : - it can be integrated with languages like C/C++ , java , etc.



 








Comments

Popular posts from this blog

About Node.js

  Node.js is an open-source, cross-platform runtime environment that allows developers to run JavaScript code outside a web browser. Here are some key points about Node.js: JavaScript Runtime : Node.js uses the V8 JavaScript engine, which is the same engine used by Google Chrome, to execute JavaScript code on the server side. Non-blocking I/O : Node.js is designed with non-blocking, event-driven architecture. This makes it efficient and suitable for data-intensive real-time applications that run across distributed devices. Single-threaded Event Loop : Despite being single-threaded, Node.js can handle many connections concurrently by using an event-driven, non-blocking I/O model, which helps in managing high throughput. NPM (Node Package Manager) : Node.js comes with NPM, the largest ecosystem of open-source libraries and packages, which simplifies the development process by allowing developers to easily share and reuse code. Popular Use Cases : Node.js is commonly used for develop...

Top 3 laptop companies in India

 In the daily we need computer and laptop. In this blog i will tell about top 10 laptop companies in all over world and as well as India. Dell laptops  about the  first company for laptop manufacturing is dell. its companies laptop are very expensive.but very strong metal body and heavy configurated motherboard ,proccessor, and hard drive. this laptop's use many only SSD. configuration RAM                 : 2GB,6GB,4GB,8GB       PROCESSOR   :DUAL CORE, CORE 2 DUO, I3, I5,   SECONDARY : SSD AND HARD DRIVE  MEMORY hp laptops about this laptop configuration is little lower than dell laptop. but than company is also focused on our  customers pocket also. because some customer need a heavy configurated laptop. but they don't have money. so these type of customer this laptop is better for us. configuration  in these laptop used only Heavy configurated motherboards.dual core, core...

What is Java Programming Language

Java is a widely-used, high-level, object-oriented programming language designed to have as few implementation dependencies as possible. Here are some key points about Java: Platform Independence : Java is designed to be platform-independent at both the source and binary levels. This means that Java programs can run on any device equipped with the Java Runtime Environment (JRE), thanks to the "write once, run anywhere" (WORA) philosophy. Object-Oriented : Java follows an object-oriented programming (OOP) model, which means it focuses on objects that contain both data and methods. This approach promotes modularity, code reuse, and flexibility. Simple and Familiar : Java's syntax is similar to C++, but it is simpler because it eliminates complex features such as pointers and operator overloading. This makes it easier to learn and use. Robust and Secure : Java emphasizes early error checking and runtime checking to catch errors early. It also provides a secure execution env...