Skip to main content

8 docs tagged with "List in Python"

View all tags

List in Python

A List in Python is a data structure that allows you to store multiple items in a single variable. Lists are ordered, mutable, and can contain elements of different data types.

Object-Oriented Programming

Python is an object-oriented programming language, which means it supports concepts like classes, objects, inheritance, polymorphism, encapsulation, and abstraction.

Python Constructor

Learn about constructors in Python OOP, including the __init__ method, types of constructors, and real-world use cases.

Python Dictionaries

Complete theoretical explanation of dictionaries in Python, covering creation, modification, methods, and use-cases.

Recursion in Python

Recursion is a programming technique where a function calls itself directly or indirectly to solve a problem.

Set in Python

A Set in Python is a built-in data structure used to store multiple unique elements in a single variable. Sets are unordered and mutable, making them an efficient tool for membership tests, eliminating duplicates, and performing mathematical set operations.