ABSTRACTION DEFINITION OF ABSTRACTION : The process of highlighting set of services and hiding the implementations in child class. We can achieve abstraction using abstract
Category: Python Theory Part
CONSTRUCTOR: Constructors logics are executed only when object is created. Ex-1: class Myclass(): def __init__(self): print(“Hi”) def wish (self): print(“Hello”) c=Myclass() #Hi c.wish() #Hello
OPERATORS ARITHMETIC
DATATYPES IN PYTHON: The basic data types available in Python language which is similar to other programming languages such as C, C++, Java etc., There
Features Of Python Simple and easy to learn Both Procedure Oriented and Object Oriented Language Freeware and Open Source Dynamically Typed Language Platform independent Portability