Teachnique
      CourseRoadmaps
      Login

      OverviewCommentsUser InputNumbersBooleansHistoryHello World ProgramEnvironment SetupSyntaxVariablesData TypesType CastingUnicode SystemLiteralsOperators

      Control FlowBreak StatementContinue StatementPass StatementNested LoopsDecision MakingIf StatementIf-else StatementNested IF StatementMatch-Case StatementLoopsFor LoopsFor-else LoopsWhile Loops

      FunctionsBuilt-in FunctionsDefault ArgumentsKeyword ArgumentsKeyword-Only ArgumentsPositional ArgumentsPositional-Only ArgumentsArbitrary ArgumentsVariable ScopeFunction AnnotationsModules

      StringSlicing StringsModify StringsString ConcatenationString FormattingEscape CharactersString MethodsString Exercises

      ListsList ExercisesAccess List ItemsChange List ItemsAdd List ItemsRemove List ItemsLoop ListsList ComprehensionSort ListsCopy ListsJoin ListsList Methods

      TuplesAccess Tuple ItemsUpdate TuplesUnpack Tuple ItemsLoop TuplesJoin TuplesTuple MethodsTuple Exercises

      SetsAccess Set ItemsAdd Set ItemsRemove Set ItemsLoop SetsJoin SetsCopy SetsSet OperatorsSet MethodsSet Exercises

      DictionariesDictionary ExercisesAccess Dictionary ItemsChange Dictionary ItemsAdd Dictionary ItemsRemove Dictionary ItemsDictionary View ObjectsLoop DictionariesCopy DictionariesNested DictionariesDictionary Methods

      ArraysAccess Array ItemsAdd Array ItemsRemove Array ItemsLoop ArraysCopy ArraysReverse ArraysSort ArraysJoin ArraysArray MethodsArray Exercises

      File HandlingWrite to FileRead FilesRenaming and Deleting FilesDirectoriesFile Methods

      OOP ConceptsDynamic BindingDynamic TypingAbstractionObject and ClassesEncapsulationInterfacesPackagesInner ClassesAnonymous Class and ObjectsSingleton ClassWrapper ClassesEnumsReflectionClass AttributesClass MethodsStatic MethodsConstructorsAccess ModifiersInheritancePolymorphismMethod OverridingMethod Overloading

      Feedback

      Submit request if you have any questions.

      Course
      Sets

      Python Tutorial

      This Python tutorial has been written for the beginners to help them understand the basic to advanced concepts of Python Programming Language. After completing this tutorial, you will find yourself at a great level of expertise in Python, from where you can take yourself to the next levels to become a world class Software Engineer.

      Sets

      A set is one of the built-in data types in Python. In mathematics, set is a collection of distinct objects. Set data type is Python's implementation of a set. Objects in a set can be of any data type.
      Set in Python also a collection data type such as list or tuple. However, it is not an ordered collection, i.e., items in a set or not accessible by its positional index. A set object is a collection of one or more immutable objects enclosed within curly brackets {}.

      Example 1

      Some examples of set objects are given below
      s1 = {"Rohan", "Physics", 21, 69.75}
      s2 = {1, 2, 3, 4, 5}
      s3 = {"a", "b", "c", "d"}
      s4 = {25.50, True, -55, 1+2j}
      print (s1)
      print (s2)
      print (s3)
      print (s4)
      It will produce the following output
      {'Physics', 21, 'Rohan', 69.75}
      {1, 2, 3, 4, 5}
      {'a', 'd', 'c', 'b'}
      {25.5, -55, True, (1+2j)}
      The above result shows that the order of objects in the assignment is not necessarily retained in the set object. This is because Python optimizes the structure of set for set operations.
      In addition to the literal representation of set (keeping the items inside curly brackets), Python's built-in set() function also constructs set object.

      set() Function

      set() is one of the built-in functions. It takes any sequence object (list, tuple or string) as argument and returns a set object

      Syntax

      Obj = set(sequence)

      Parameters

      • sequence − An object of list, tuple or str type

      Return value

      The set() function returns a set object from the sequence, discarding the repeated elements in it.

      Example 2

      L1 = ["Rohan", "Physics", 21, 69.75]
      s1 = set(L1)
      T1 = (1, 2, 3, 4, 5)
      s2 = set(T1)
      string = "TutorialsPoint"
      s3 = set(string)
      
      print (s1)
      print (s2)
      print (s3)
      It will produce the following output
      {'Rohan', 69.75, 21, 'Physics'}
      {1, 2, 3, 4, 5}
      {'u', 'a', 'o', 'n', 'r', 's', 'T', 'P', 'i', 't', 'l'}

      Example 3

      Set is a collection of distinct objects. Even if you repeat an object in the collection, only one copy is retained in it.
      s2 = {1, 2, 3, 4, 5, 3,0, 1, 9}
      s3 = {"a", "b", "c", "d", "b", "e", "a"}
      print (s2)
      print (s3)
      It will produce the following output 
      {0, 1, 2, 3, 4, 5, 9}
      {'a', 'b', 'd', 'c', 'e'}

      Example 4

      Only immutable objects can be used to form a set object. Any number type, string and tuple is allowed, but you cannot put a list or a dictionary in a set.
      s1 = {1, 2, [3, 4, 5], 3,0, 1, 9}
      print (s1)
      s2 = {"Rohan", {"phy":50}}
      print (s2)
      It will produce the following output
      s1 = {1, 2, [3, 4, 5], 3,0, 1, 9}
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
      TypeError: unhashable type: 'list'
      s2 = {"Rohan", {"phy":50}}
      ^^^^^^^^^^^^^^^^^^^^^
      TypeError: unhashable type: 'dict'
      Python raises TypeError with a message unhashable types 'list' or 'dict'. Hashing generates a unique number for an immutable item that enables quick search inside computer's memory. Python has built-in hash() function. This function is not supported by list or dictionary.
      Even though mutable objects are not stored in a set, set itself is a mutable object. Python has a special operators to work with sets, and there are different methods in set class to perform add, remove, update operations on elements of a set object.

      Practice with Online Editor

      Note: This Python online Editor is a Python interpreter written in Rust, RustPython may not fully support all Python standard libraries and third-party libraries yet.
      Remember to save code(Ctrl + S Or Command + S) before run it.