Skip to main content

10 docs tagged with "String"

View all tags

Array in Python

An Array in Python is a data structure that stores multiple elements of the same data type in contiguous memory locations.

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.

String in Python

In Python, a string is a sequence of characters enclosed within single ('), double ("), or triple quotes (''' ''' or """ """).