Thursday 11 September 2014

PLAYING AROUND WITH PYTHON


Python can do a few basic mathematical operation without any complex syntax.

For eg:-

If we type 2+3 and press enter it prints the result and that is 5.
Similarly it can perform subtraction multiplication and division.
If we need to solve 23 we can do it either by 2*2*2 and pressing enter or simply by 2**3 which works perfect for higher power and various algorithms.

Wednesday 10 September 2014

PYTHON 1st TUTORIAL


Hello World is the most basic programme which we learn while learning any computer language

To write hello world

Step 1:Open Python IDLE
Step 2: Type
                      print "Hello World"
Step 3:See the result .

PYTHON



Python is a widely used general-purpose,high-level programming language. Its design philosophy emphasizes codereadability, and its syntax allows programmers to express concepts in fewerlines of code than would be possible in languages such as C.The language provides constructs intended to enable clear programs on both a small and large scale