Skip to content
Courses
DSA to Development
Machine Learning & Data Science
Generative AI & ChatGPT
Become AWS Certified
DSA Courses
Data Structure & Algorithm(C++/JAVA)
Data Structure & Algorithm(Python)
Data Structure & Algorithm(JavaScript)
Programming Languages
CPP
Java
Python
JavaScript
C
All Courses
Tutorials
Python Tutorial
Taking Input in Python
Python Operators
Python Data Types
Python Loops and Control Flow
Python Conditional Statements
Python Loops
Python Functions
Python OOPS Concept
Python Data Structures
Python Exception Handling
Python File Handling
Python Exercises
Java
Learn Java Programming Language
Java Collections
Java 8 Tutorial
Java Programs
Java Interview Questions
Java Interview Questions
Core Java Interview Questions-Freshers
Java Multithreading Interview Questions
OOPs Interview Questions and Answers
Java Exercises
Java Quiz
Java Quiz
Core Java MCQ
Java Projects
Advance Java
Spring Tutorial
Spring Boot Tutorial
Spring Boot Interview Questions
Spring MVC Tutorial
Spring MVC Interview Questions
Hibernate Tutorial
Hibernate Interview Questions
Programming Languages
JavaScript
C++
R Tutorial
SQL
PHP
C#
C
Scala
Perl
Go Language
Kotlin
System Design
System Design Tutorial
Software Design Patterns
System Design Roadmap
Top 10 System Design Interview Questions and Answers
Interview Corner
Company Preparation
Top Topics
Practice Company Questions
Interview Experiences
Experienced Interviews
Internship Interviews
Competitive Programming
Multiple Choice Quizzes
Aptitude for Placements
Computer Science Subjects
Operating System
DBMS
Computer Networks
Engineering Mathematics
Computer Organization and Architecture
Theory of Computation
Compiler Design
Digital Logic
Software Engineering
DevOps
GIT
AWS
Docker
Kubernetes
Microsoft Azure Tutorial
Google Cloud Platform
Linux
Linux Tutorial
Linux Commands A-Z
Linux Commands Cheatsheet
File Permission Commands
Linux System Administration
Linux File System
Linux Shell Scripting
Linux Networking
Linux Interview Questions
Software Testing
Software Testing Tutorial
Software Engineering Tutorial
Testing Interview Questions
Jira
Databases
DBMS Tutorial
SQL Tutorial
PostgreSQL Tutorial
MongoDB Tutorial
SQL Interview Questions
MySQL Interview Questions
PL/SQL Interview Questions
Android
Android Tutorial
Android Studio Tutorial
Kotlin For Android
Android Projects
Android Interview Questions
6 Weeks of Android App Development
Excel
MS Excel Tutorial
Introduction to MS Excel
Data Analysis in Excel
Basic Excel Formulas & Functions
Data Analysis in Advanced Excel
Workbooks
Statistical Functions
Data Visualization in Excel
Pivot Tables in Excel
Excel Spreadsheets in Python
Basic Excel Shortcuts
Mathematics
Number System
Algebra
Linear Algebra
Trigonometry
Set Theory
Statistics
Probability
Geometry
Mensuration
Logarithms
Calculus
DSA
Data Structures
Arrays
Matrix
Strings
Linked List
Stack
Queue
Tree
Heap
Hashing
Graph
Set Data Structure
Map Data Structure
Advanced Data Structure
Data Structures Tutorial
Algorithms
Analysis of Algorithms
Design and Analysis of Algorithms
Asymptotic Analysis
Asymptotic Notations
Worst, Average and Best Cases
Searching Algorithms
Linear Search
Binary Search
Searching Algorithms Tutorial
Sorting Algorithms
Selection Sort
Bubble Sort
Insertion Sort
Merge Sort
Quick Sort
Heap Sort
Counting Sort
Radix Sort
Bucket Sort
Sorting Algorithms Tutorial
Greedy Algorithms
Dynamic Programming
Graph Algorithms
Pattern Searching
Recursion
Backtracking
Divide and Conquer
Mathematical Algorithms
Geometric Algorithms
Bitwise Algorithms
Randomized Algorithms
Branch and Bound
Algorithms Tutorial
DSA Tutorial
Practice
All DSA Problems
Problem of the Day
Company Wise Coding Practice
Amazon
Microsoft
Flipkart
Explore All
GfG SDE Sheet
Practice Problems Difficulty Wise
School
Basic
Easy
Medium
Hard
Language Wise Coding Practice
CPP
Java
Python
Curated DSA Lists
Beginner's DSA Sheet
Top 50 Array Problems
Top 50 String Problems
Top 50 DP Problems
Top 50 Graph Problems
Top 50 Tree Problems
Competitive Programming
Company Wise SDE Sheets
Facebook SDE Sheet
Amazon SDE Sheet
Apple SDE Sheet
Netflix SDE Sheet
Google SDE Sheet
DSA Cheat Sheets
SDE Sheet
DSA Sheet for Beginners
FAANG Coding Sheet
Product-Based Coding Sheet
Company-Wise Preparation Sheet
Top Interview Questions
Puzzles
All Puzzles
Top 100 Puzzles Asked In Interviews
Top 20 Puzzles Commonly Asked During SDE Interviews
Data Science
Python Tutorial
R Tutorial
Machine Learning
Data Science using Python
Data Science using R
Data Science Packages
Pandas Tutorial
NumPy Tutorial
Data Visualization
Python Data Visualization Tutorial
Data Visualization with R
Data Analysis
Data Analysis with Python
Data Analysis with R
Deep Learning
NLP Tutorial
Web Tech
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
PHP Tutorial
ReactJS Tutorial
NodeJS Tutorial
Bootstrap Tutorial
Typescript
Web Development Using Python
Django
Django Tutorial
Django Projects
Django Interview Questions
Flask
Flask Tutorial
Flask Projects
Flask Interview Questions
Postman
Github
Cheat Sheets
HTML Cheat Sheet
CSS Cheat Sheet
JavaScript Cheat Sheet
React Cheat Sheet
Angular Cheat Sheet
jQuery Cheat Sheet
Bootstrap Cheat Sheet
Learn Complete Web Development
Trending Now
DSA
Web Tech
Foundational Courses
Data Science
Practice Problem
Python
Machine Learning
JavaScript
System Design
Django
DevOps Tutorial
Java
C
C++
ReactJS
NodeJS
CP Live
Aptitude
Puzzles
Projects
▲
Similar Topics
Python
20k+ articles
Difference Between
4.4k+ articles
Python Programs
4.1k+ articles
python
1k+ articles
python-modules
380+ articles
python-basics
250+ articles
Python-Functions
100+ articles
Python-OOP
64 articles
Python collections-module
24 articles
python-inheritance
6 articles
python-oop-concepts
90 posts
Popular Articles
Recent Articles
What is a clean and Pythonic way to have multiple constructors in Python?
Last Updated: 05 February 2024
Python does not support explicit multiple constructors, yet there are some ways to achieve multiple constructors.We use Python's inbuilt __i
...read more
Python
python-oop-concepts
Python-OOP
Python Oops-programs
Inner Class in Python
Last Updated: 05 September 2024
Python is an Object-Oriented Programming Language, everything in Python is related to objects, methods, and properties. A class is a user-de
...read more
Python
python-oop-concepts
Python-OOP
Difference between Method Overloading and Method Overriding in Python
Last Updated: 29 April 2021
Method Overloading:Method Overloading is an example of Compile time polymorphism. In this, more than one method of the same class shares the
...read more
Python
Difference Between
python-basics
python-oop-concepts
Similar Topics
Python
20k+ articles
Difference Between
4.4k+ articles
Python Programs
4.1k+ articles
python
1k+ articles
python-modules
380+ articles
python-basics
250+ articles
Python-Functions
100+ articles
Python-OOP
64+ articles
Python collections-module
24+ articles
python-inheritance
6+ articles
__getitem__() in Python
Last Updated: 26 March 2020
In Python, everything is an object. There are a lot of 'ordinary' system call methods on these objects behind the scene which is not visible
...read more
Python
python-oop-concepts
Python super()
Last Updated: 07 August 2024
In Python, the super() function is used to refer to the parent class or superclass. It allows you to call methods defined in the superclass
...read more
Python
python-oop-concepts
Python-OOP
python
Extend Class Method in Python
Last Updated: 06 February 2020
In Python, when a subclass defines a function that already exists in its superclass in order to add some other functionality in its own way,
...read more
Python
python-oop-concepts
Python-OOP
How to Get a List of Class Attributes in Python?
Last Updated: 11 November 2022
A class is a user-defined blueprint or prototype from which objects are created. Classes provide a means of bundling data and functionality
...read more
Technical Scripter
Python
python-oop-concepts
Python-OOP
Technical Scripter 2019
Python: Call Parent class method
Last Updated: 23 January 2020
A class is a user-defined blueprint or prototype from which objects are created. Classes provide a means of bundling data and functionality
...read more
Python
python-oop-concepts
Types of inheritance Python
Last Updated: 07 July 2022
Inheritance is defined as the mechanism of inheriting the properties of the base class to the child class. Here we a going to see the types
...read more
Technical Scripter
Python
python-oop-concepts
python-inheritance
Python-OOP
Access Modifiers in Python : Public, Private and Protected
Last Updated: 05 September 2024
Prerequisites: Underscore (_) in Python, Private Variables in PythonEncapsulation is one of the four principles used in Object Oriented Para
...read more
Python
python-oop-concepts
Picked
Python-OOP
self in Python class
Last Updated: 25 July 2024
Self represents the instance of the class. By using the "self" we can access the attributes and methods of the class in Python. It binds the
...read more
Python
python-oop-concepts
Python-OOP
Abstract Classes in Python
Last Updated: 25 July 2024
An abstract class can be considered a blueprint for other classes. It allows you to create a set of methods that must be created within any
...read more
Technical Scripter
Python
python-oop-concepts
Picked
python
Polymorphism in Python
Last Updated: 01 July 2024
What is Polymorphism: The word polymorphism means having many forms. In programming, polymorphism means the same function name (but differen
...read more
Technical Scripter
Python
Python-Functions
python-oop-concepts
Picked
python-inheritance
Python-OOP
Technical Scripter 2018
Dunder or magic methods in Python
Last Updated: 07 August 2024
Python Magic methods are the methods starting and ending with double underscores '__'. They are defined by built-in classes in Python and co
...read more
Python
python-oop-concepts
python
Python OOPs Concepts
Last Updated: 05 September 2024
Object Oriented Programming is a fundamental concept in Python, empowering developers to build modular, maintainable, and scalable applicati
...read more
Python
python-oop-concepts
1
2
3
4
5
6
>>
Last
1
2
3
4
5
6
>>
Last
1
2
3
4
>>
Last
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !