Class1(1)
Class1(1)
Installation:
What is python
OOPS:
object,class,abstraction,encapsulation,inheritance,polymorphism
python version
2.X,3.X
Python usages:
https://wiki.python.org/moin/OrganizationsUsingPython
Python Installation:
2 ways
IDE(Integrated Development Environment)
Linux
# wget https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz
# tar xJf Python-3.6.0.tar.xz
# cd Python-3.6.0
# ./configure
# make
# make install
Simple Script:
Comments:
# --> Single line comments
''' --> Multiline comments
Block:
while(i<=10):
print i
i+=1
Variable:
Simple assignement
multi assignement
a,b=10,20
a=b=20
Naming Rules:
Should not start with Numbers
Keywords:
while,for,do,else,and,or etc ...
Print Command
In [33]: age=60
In [35]: str="shahan"