Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Introduction To PYTHON , FEATURES, Python vs JAVA, Advantages, Applications

3 min read

 Introduction To PYTHON

Python is a widely used general-purpose, high level programming language. It was created by Guido van Rossum in 1991 and further developed by the Python Software Foundation. It was designed with an emphasis on code readability, and its syntax allows programmers to express their concepts in fewer lines of code.

Python is a programming language that lets you work quickly and integrate systems more efficiently.





Writing our first program:

Just type in the following code after you start the interpreter.

# Script Begins
  
print("UJJWAL")
  
# Scripts Ends

Output:

UJJWAL

Let’s analyze the script line by line.

Line 1: [# Script Begins] In Python, comments begin with a #. This statement is ignored by the interpreter and serves as documentation for our code.

Line 2: [print(“UJJWAL”)] To print something on the console, print() function is used. This function also adds a newline after our message is printed(unlike in C). Note that in Python 2, “print” is not a function but a keyword and therefore can be used without parentheses. However, in Python 3, it is a function and must be invoked with parentheses.

Line 3: [# Script Ends] This is just another comment like in Line 1.

Python designed by Guido van Rossum at CWI has become a widely used general-purpose, high-level programming language.

Prerequisites:

Knowledge of any programming language can be a plus.

Reason for increasing popularity

  1. Emphasis on code readability, shorter codes, ease of writing
  2. Programmers can express logical concepts in fewer lines of code in comparison to languages such as C++ or Java.
  3. Python supports multiple programming paradigms, like object-oriented, imperative and functional programming or procedural.
  4. There exists inbuilt functions for almost all of the frequently used concepts.
  5. Philosophy is “Simplicity is the best”.

LANGUAGE FEATURES

  • Interpreted
    • There are no separate compilation and execution steps like C and C++.
    • Directly run the program from the source code.
    • Internally, Python converts the source code into an intermediate form called bytecodes which is then translated into native language of specific computer to run it.
    • No need to worry about linking and loading with libraries, etc.
  • Platform Independent
    • Python programs can be developed and executed on multiple operating system platforms.
    • Python can be used on Linux, Windows, Macintosh, Solaris and many more.
  • Free and Open Source; Redistributable
  • High-level Language
    • In Python, no need to take care about low-level details such as managing the memory used by the program.
  • Simple
    • Closer to English language;Easy to Learn
    • More emphasis on the solution to the problem rather than the syntax
  • Embeddable
    • Python can be used within C/C++ program to give scripting capabilities for the program’s users.
  • Robust:
    • Exceptional handling features
    • Memory management techniques in built
  • Rich Library Support
    • The Python Standard Library is very vast.
    • Known as the “batteries included” philosophy of Python ;It can help do various things involving regular expressions, documentation generation, unit testing, threading, databases, web browsers, CGI, email, XML, HTML, WAV files, cryptography, GUI and many more.
    • Besides the standard library, there are various other high-quality libraries such as the Python Imaging Library which is an amazingly simple image manipulation library.

    Python vs JAVA

    Python

    Java

    Dynamically Typed 

    • No need to declare anything. An assignment statement binds a name to an object, and the object can be of any type.
    • No type casting is  required when using container objects

    Statically Typed

    • All variable names (along with their types) must be explicitly declared. Attempting to assign an object of the wrong type to a variable name triggers a type exception.
    • Type casting is required when using container objects.
    Concise Express much in limited wordsVerbose Contains more words
    CompactLess Compact
    Uses Indentation for structuring codeUses braces for structuring code

    Advantages : 

    1. Presence of third-party modules 
    2. Extensive support libraries(NumPy for numerical calculations, Pandas for data analytics etc) 
    3. Open source and community development 
    4. Versatile, Easy to read, learn and write
    5. User-friendly data structures 
    6. High-level language 
    7. Dynamically typed language(No need to mention data type based on the value assigned, it takes data type) 
    8. Object-oriented language 
    9. Portable and Interactive
    10. Ideal for prototypes – provide more functionality with less coding
    11. Highly Efficient(Python’s clean object-oriented design provides enhanced process control, and the language is equipped with excellent text processing and integration capabilities, as well as its own unit testing framework, which makes it more efficient.)
    12. (IoT)Internet of Things Opportunities
    13. Interpreted Language
    14. Portable across Operating systems 

     

    Applications : 

    1. GUI based desktop applications
    2. Graphic design, image processing applications, Games, and Scientific/ computational Applications
    3. Web frameworks and applications 
    4.  Enterprise and Business applications 
    5.  Operating Systems 
    6. Education
    7. Database Access
    8. Language Development 
    9.  Prototyping 
    10. Software Development
       

    Organizations using Python : 

    1. Google(Components of Google spider and Search Engine) 
    2. Yahoo(Maps) 
    3. YouTube 
    4. Mozilla 
    5. Dropbox 
    6. Microsoft 
    7. Cisco 
    8. Spotify 
    9. Quora 

       

    You may like these posts

    •  Python program maximum numberGiven three number a b and c, the task is that we have to find the greatest element in among in given numberExamples:Input : a = 2, b = 4, c = 3 …
    •  Python - Decision MakingDecision making is anticipation of conditions occurring while execution of the program and specifying actions taken according to the conditions.Decisi…
    •  loops in pythonPython programming language provides the following types of loops to handle looping requirements. Python provides three ways for executing the loops. While all…
    •  Python Program to Find the Factorial of a NumberWhat is factorial?Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that n…
    •  Python Program to Print all Prime Numbers in an IntervalA prime number is a natural number which is greater than 1 and has no positive divisor other than 1 and itself, such a…
    •  Python Program to Check if a Number is Odd or EvenOdd and Even numbers:If you divide a number by 2 and it gives a remainder of 0 then it is known as even number, otherwise an…

    Post a Comment

    © 2025Python . The Best Codder All rights reserved. Distributed by