Install our extension to search inside any video instantly.

CT Live

Added:
1,249 views22likes3:11:15IITMadrasBSDegreeProgrammeOriginal Release: 2026-07-21

Lists are collections that allow storing multiple items in a single variable, essential when the number of possible values is unknown or when multiple items need to be tracked simultaneously. Unlike single variables, lists can hold multiple entries without a fixed upper limit, making them suitable for scenarios like tracking multiple students' scores across different competitions. Key operations include appending elements (using ++), iterating through lists (using for each), and performing calculations like finding minimum/maximum values. Lists can store elements of different data types and can be combined with other lists. The order of elements in a list may or may not be important depending on the problem requirements.