1 Dec 2020

Introduction to python

               A program is a set of instructions that a computer follows in order to perform a specific task. There are different types of programming languages such as BASIC, Pascal, C, C++, Java, Ruby, Python etc.... In this site we will see about python.   
  
                                         


           Python is a general-purpose interpreted, interactive, object-oriented and high level programming language. It was created by Guido van Rossum during 1985-1990.Python got it's name from "monty  
 python's flying circus" . It was released in the year of 2000.

* Python is interpreted : python is processed at runtime by the interpreter. You don't need to compile your program before executing it.

*Python is interactive : you can actually sit at a python prompt and interact with the interpreter directly to write your programs.

*Python is object-oriented : python is great language for the beginner level programmer's and support the development of a wide range application.

*Python is high-level programming language : when writting a program's programmer's concentrate on solution's of the current problem, no need to worry about the low level details.

No comments:

Post a Comment

Operator precedence

           When an expression contains more than one operator, the order of evaluation depends on the order of operations.            The ac...