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 the

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}

Please write code in pycharm or something similar

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!