Question: This program is about sets. Write a Python program to do the following: (a) Generate 5 random integers between 1 and 10, inclusive. Store
This program is about sets. Write a Python program to do the following: (a) Generate 5 random integers between 1 and 10, inclusive. Store the random integers in a set named set1. Display the set. Please note that the set may have less than 5 elements because some of the random integers generated may be redundant. (b) Generate 5 random integers between 1 and 10, inclusive. Store the random integers in another set named set2. Display the set. Please note that the set may have less than 5 elements because some of the random integers generated may be redundant. (c) Find and display the union of set1 and set2. (d) Use set comprehension to select odd numbers from the union and store them in a set. Display this set. (e) Find and display the intersection of set1 and set2. (f) Find and display the symmetric difference of set1 and set2. The following is an example. set1: {9, 10, 1, 7} set2: {8, 1, 7} Union of set1 and set2: {1, 7, 8, 9, 10} Odd numbers in union of set1 and set2: {1, 9, 7} Intersection of set1 and set2: {1, 7} Symmetric difference of set1 and set2: {8, 9, 10}
Step by Step Solution
3.41 Rating (154 Votes )
There are 3 Steps involved in it
python import random Generate two sets of 5 random integers between 1 and 10 set1 randomrandint1 10 ... View full answer
Get step-by-step solutions from verified subject matter experts
