About Python

Posted on Thu 19 November 2015 in Python

python

About 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 ...

Continue reading

Arithmetic Operations

Posted on Thu 19 November 2015 in Python

python

Basic Arithmetic Operations

In python, performing the arithmetic operations are quit easier.

For example,

a = 50
b = 20

print a + b
print a - b
print a * b
print a / b

Getting an input

For getting an input from the users,

```

Continue reading

Printing in Python

Posted on Thu 19 November 2015 in Python

python

Printing the statement

Its easy task to print a statement in python. Here Iam gonna print "Hello all, Welcome to my blog". Lets see how to print it.

print("Hello all, Welcome to my blog")

Above is the example for printing the statement in python where print is a keyword ...

Continue reading