Kashishkd77/Set-in-Python
Sets are used to store multiple items in a single variable. Set is one of 4 built-in data types in Python used to store collections of data, the other 3 are List, Tuple, and Dictionary. A set is un-indexed, unordered , unchangeable , cannot contain duplicate values and cannot contain other built-in data types like list , set , etc as their items. Sets are written with braces .Here , practical demonstration of set is given (creation, accessing, deleting elements, functions, operations, set comprehensions, etc. ).
Python
No issues in this repository yet.