Skip to main content

Python

In an era where the computer technology & artificial intelligence are developing rapidly, is vital for every individual to have at least a minimum knowledge about computer languages. In what case we are ready to provide our readers an adequate knowledge about computer languages & a wide explanation about python, beginning from the basic fundamentals up-to designing computer softwares.

What is Python?


Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application Development, as well as for use as a scripting or glue language to connect existing components together. Python's simple, easy to learn syntax emphasizes readability and therefore reduces the cost of program maintenance. Python supports modules and packages, which encourages program modularity and code reuse. The Python interpreter and the extensive standard library are available in source or binary form without charge for all major platforms, and can be freely distributed.

Why Python from us?

We have knowledge to teach you python from basic to the advanced stage. Through the practicals and from the examples we are going to teach the python programming. From this website we are taking out the lessons about python 3.0. 

Many internet problems from Euler as well as also your problems are going to be discussed by us. and if you get bugs when writing the programs we are here to help you as soon as possible. And we are writing our lessons in Unicode so you can translate in any language. Stay with us for the lessons.

Here a sample......

# For loop on a list
>>> numbers = [2, 4, 6, 8]
>>> product = 1
>>> for number in numbers:
...    product = product * number
... 
>>> print('The product is:', product)




Comments

Popular posts from this blog

Evolution of programming languages

Evolution of programming Languages        All programming languages developed  from the inception can be classified  into four main classes .     1.First Generation programming  languages (Machine languages )     2. Second  Generation  programming  languages (Assembly languages)     3.Third Generation programming  languages (High level languages)     4.Fourth  Generation  programming  languages (Artificial languages )       One of the key features apparent  in the evolution of the programming  languages is that the programming languages have become easily understandable and usable over the years . 1)First Generation programming languages                                All machine  languages fall into this category. Common features :-...