1 / 20

Python sets - A Treasure Trove

https://pythonflood.com/python-sets-a-treasure-trove-of-possibilities-1193acac41a0

Sudhanshi
Download Presentation

Python sets - A Treasure Trove

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Python sets - A Treasure Trove Python is a popular programming language that is widely used for a variety of tasks, including web development, data analysis, and machine learning. One of the useful features of Python is its support for sets, which are a type of data structure that allow you to store unique elements. In this tutorial, we’ll take a closer look at Python sets, and learn how to use them effectively in your Python programs. In Python, a set is an unordered collection of unique elements. This means that there can only be one of each element in a set, and the order in which the elements are stored does not matter. Sets are useful for many different operations, such as checking for duplicates, finding the intersection or union of two sets, or determining if one set is a subset of another.

  2. To better understand sets, let’s consider a real-life example. Imagine you are planning a party and you need to make a guest list. You start by writing down the names of all the people you want to invite on a piece of paper. As you add names to the list, you realize that you accidentally wrote down the same name twice. To avoid confusion, you decide to create a set instead. In this set, each element represents a unique person that you want to invite to your party. You can add or remove names from the set as needed, and you can also perform various operations on the set to help you plan your party more effectively.

  3. Now let’s look at how we can create and manipulate sets in Python. To create a set, we can use the following syntax: my_set = {element1, element2, element3} Note that we use curly braces to define a set, and we separate each element with a comma. For example, let’s create a set of fruits: fruits = {"apple", "banana", "orange"}

  4. We can also create a set from a list by using the set() function. For example: my_list = [1, 2, 3, 2, 1] my_set = set(my_list) This will create a set that contains the unique elements from the list [1, 2, 3, 2, 1], which are 1, 2, and 3. Now let’s look at some of the operations we can perform on sets. One of the most common operations is to check if an element is in a set. We can do this using the in keyword. For example: if "apple" in fruits: print("We have apples!")

  5. This will check if the string “apple” is in the fruits set, and if so, it will print the message “We have apples!”. We can also add elements to a set using the add() method. For example: fruits.add("grape") This will add the string “grape” to the fruits set. We can remove elements from a set using the remove() method. For example: fruits.remove("banana") This will remove the string “banana” from the fruits set.

  6. We can find the intersection of two sets using the intersection() method. For example, let’s say we have two sets: set1 = {1, 2, 3, 4, 5} set2 = {3, 4, 5, 6, 7} We can find the intersection of these sets by calling the intersection() method on one set and passing the other set as an argument. For example: intersection_set = set1.intersection(set2) This will create a new set called intersection_set that contains the elements that are in both set1 and set2, which are 3, 4, and 5. We can find the union of two sets using the union() method. For example:

  7. union_set = set1.union(set2) This will create a new set called union_set that contains all the unique elements from both set1 and set2, which are 1, 2, 3, 4, 5, 6, and 7. We can check if one set is a subset of another using the issubset() method. For example, let’s say we have two sets: set1 = {1, 2, 3, 4, 5} set2 = {3, 4, 5} We can check if set2 is a subset of set1 by calling the issubset() method on set2 and passing set1 as an argument. For example: if set2.issubset(set1): print("set2 is a subset of set1")

  8. This will check if all the elements in set2 are also in set1, and if so, it will print the message “set2 is a subset of set1”. Finally, we can use sets to remove duplicates from a list. For example, let’s say we have a list of numbers with duplicates: my_list = [1, 2, 3, 2, 1, 4, 5, 4] We can remove the duplicates by converting the list to a set and then back to a list: my_list = list(set(my_list)) This will create a new set that contains the unique elements from my_list, which are 1, 2, 3, 4, and 5. We then convert this set back to a list using the list() function, which will create a new list with the same elements, but with duplicates removed. Creating sets:

  9. To create an empty set, you can use the set() constructor, like this: my_set = set(). To create a set from an existing iterable, like a list, you can pass the iterable to the set() constructor, like this: my_set = set([1, 2, 3]). To create a set with initial values, you can use curly braces, like this: my_set = {1, 2, 3}. For example : # Create an empty set my_set = set() # Create a set from a list my_list = [1, 2, 3] my_set = set(my_list) # Create a set with initial values

  10. my_set = {1, 2, 3} Modifying sets: To add an element to a set, you can use the add() method, like this: my_set.add(4). To remove an element from a set, you can use the remove() method, like this: my_set.remove(3). To modify a set using set operations, you can use methods like update() to add elements from another set, or intersection_update() to modify the set to contain only elements that are in both the original set and another set. For example: # Add an element to a set my_set = {1, 2, 3} my_set.add(4) # my_set now contains {1, 2, 3, 4} # Remove an element from a set

  11. my_set = {1, 2, 3, 4} my_set.remove(3) # my_set now contains {1, 2, 4} # Modify a set using set operations set1 = {1, 2, 3} set2 = {2, 3, 4} set1.update(set2) # set1 now contains {1, 2, 3, 4} set1 = {1, 2, 3} set2 = {2, 3, 4} set1.intersection_update(set2) # set1 now contains {2, 3}

  12. Set operations: Set operations are used to combine or compare sets. For example, the union of two sets can be found using the union() method or the | operator, like this: set1.union(set2) or set1 | set2. The intersection of two sets can be found using the intersection() method or the & operator, like this: set1.intersection(set2) or set1 & set2. The difference of two sets can be found using the difference() method or the — operator, like this: set1.difference(set2) or set1 — set2. The symmetric difference of two sets can be found using the symmetric_difference() method or the ^ operator, like this: set1.symmetric_difference(set2) or set1 ^ set2. Example 1: set1 = {1, 2, 3} set2 = {3, 4, 5} # Union of two sets

  13. union_set = set1.union(set2) # union_set now contains {1, 2, 3, 4, 5} Image for your understanding of what a union is: Example 2: set1 = {2, 3, 5, 7, 9, 11} set2 = {1, 2, 3, 4, 5, 6, 7} # Intersection of two sets intersection_set = set1.intersection(set2) # intersection_set now contains {2, 3, 5, 7} Example 3: set1 = {1, 2, 3, 4}

  14. set2 = {3, 4, 5, 6} # Difference of two sets difference_set = set1.difference(set2) # difference_set now contains {1, 2} Set Methods

  15. Set methods are used to perform various operations on sets. For example, the issubset() method can be used to check if one set is a subset of another set, like this: set1.issubset(set2). The issuperset() method can be used to check if one set is a superset of another set, like this: set1.issuperset(set2). The isdisjoint() method can be used to check if two sets have no common elements, like this: set1.isdisjoint(set2). The copy() method can be used to make a copy of a set, like this: my_set_copy = my_set.copy(). For Example: set1 = {1, 2, 3} set2 = {2, 3} # Check if one set is a subset of another set set2.issubset(set1) # returns True # Check if one set is a superset of another set

  16. set1.issuperset(set2) # returns True # Check if two sets have no common elements set1.isdisjoint(set2) # returns False # Make a copy of a set set_copy = set1.copy() Set Comprehensions: Set comprehensions are similar to list comprehensions, but they create sets instead of lists. For example, the following code creates a set of squares for all even numbers between 1 and 10: # Create a set of squares for all even numbers between 1 and 10 my_set = {x**2 for x in range(1, 11) if x % 2 == 0}

  17. # my_set contains {4, 16, 36, 64, 100} Set Theory Set theory is a branch of mathematics that deals with the properties and relationships of sets. Some concepts from set theory can be useful when working with sets in Python. # Example of using set theory to solve a problem set1 = {1, 2, 3, 4} set2 = {3, 4, 5, 6} set3 = {4, 5, 6, 7} # Find the elements that are in exactly two of the sets result_set = (set1 ^ set2) & (set2 ^ set3) & (set3 ^ set1) # result_set contains {3, 5}

  18. Tips and Tricks 1. To create an empty set, you can’t just use {} as that creates an empty dictionary. Instead, you should use the set() constructor like this: my_set = set(). 2. You can convert other iterable data structures like lists and tuples to sets using the set() constructor. For example, my_list = [1, 2, 3] can be converted to a set like this: my_set = set(my_list). 3. You can add elements to a set using the add() method, and remove them using the remove() method. If you’re not sure if an element is in the set, you can use the in-operator to check. 4. You can use set operations like intersection(), union(), and difference() to combine or compare sets. These methods return a new set that contains the result of the operation and do not modify the original sets.

  19. 5. You can use the issubset() and issuperset() methods to check if one set is a subset or superset of another set. These methods return a boolean value.If you need to modify a set in place, you can use methods like update() to add elements from another set, or intersection_update() to modify the set to contain only elements that are in both the original set and another set. 6. Finally, remember that sets are unordered, meaning that the order of elements in a set is not guaranteed. If you need to preserve the order of elements, you should use a different data structure like a list. Conclusion In conclusion, Python sets are a powerful tool for managing collections of unique elements in your Python programs. By understanding how to create and manipulate sets, you can perform a wide range of

  20. operations on your data, from finding intersections to removing duplicates. I hope this tutorial has helped you to understand sets better, and that you’ll be able to use them effectively in your own Python programming.

More Related