Skip to main content

INTRODUCTION TO PYTHON AND SOFTWARE INSTALLATION







INTRODUCTION TO PYTHON AND SOFTWARE INSTALLATION

Introduction: Python is a very powerful programming language developed by Guido van Rossum during 1980’s. Python is an open source, high- level object oriented scripting programming language. Python is used by modern programmers because it is easy to learn and understand and at the same time very powerful.

Python supports various other programming languages like Perl, PHP and so on. The main feature or advantage about python is, it is an interactive and interpreted programming language. Unlike other programming languages, like C, C++, JAVA, Python doesn’t need any compiler to run the code. The code can be directly written and run using the python software and hence it is an interpreter language.
Python is derived from many other programming languages. It supports object-oriented style which means that the program can be encapsulated with objects.

Some of the Features of Python are:

1)  It supports broad standard libraries and is also compatible with other platforms like UNIX, MAC and Windows.
2)    Python supports GUI applications which is created for many system calls, it supports databases interface for commercial use.
3)  It is scalable and portable which means it supports large programs and can run on almost all hardware platforms.
4)  It supports both low-level programming as well as high-level programming which means it supports functional and structural programming methods.
5)  Easy to read, learn and understand because it uses more English keywords which makes it simple.
6)     Can be used with large applications.

How to install the software and get started:
As mentioned earlier, Python is an open source software so you can directly go to the download page www.python.org and download the most latest available software and documents.
Python software is available for wide range of platforms and it can be downloaded from the same link mentioned above. Before installing the software, check for the bit version your machine is running on. Python is available for both versions; that is 32 bit version as well as 64 bit version. Just follow the instructions of installing. It is easy to install and get started.


Comments

Popular posts from this blog

COMPARISON, LOGICAL, ASSIGNMENT AND BITWISE OPERATORS

COMPARISON, LOGICAL, ASSIGNMENT AND BITWISE OPERATORS In this blog we will see about Arithmetic operators and understand how to use it with Python IDLE to perform certain calculations. PYTHON COMPARISON OPERATORS OPERATOR DESCRIPTION EXAMPLE        == Checks whether LHS is equal to RHS, then the condition becomes true 10==10 is true        != Checks whether LHS is not equal to RHS, then the condition becomes true 2!=3 is true        > Checks whether LHS is greater than RHS, then the condition becomes true 6>3 is true        < Checks whether LHS is less than RHS, then the condition becomes true 6<10 is true        >= Checks whether LHS is gre...

BUILT INS FUNCTIONS IN PYTHON

BUILT INS FUNCTIONS IN PYTHON Every programming languages have certain pre-defined functions. Similarly, for certain tasks python has built in functions which you can access and understand as explained in the video.   dir(__builtins__): This module will return all the built in function and identifiers directly available to the programmer.   help(“function name”): This is the most important function in python. It gives the complete detail regarding the function which you mentioned inside help().

WHILE LOOP IN PYTHON

WHILE LOOP IN PYTHON Loops are used to execute a piece of code or set of statements multiple times in a program as long as the condition is true. While loop is the basic loop structure in Python. Syntax: While (expression):             Statement(s) Here, condition may be any logical expression and statement(s) can be single statement or multiple statements. The loop will iterate or execute until the condition is true. When the condition becomes false, program comes out of the loop and remaining statements are executed. In Python language, during any of the decision making, control statements and looping indentation is very important because, it specifies the set of statements to be a part of single code or block. Since no brackets are used to specify the complete code with in, indentation is used. Flowchart: In While loop, the main important thing is the loop may never be executed if the condition is...