Set:

Q1: Create a set with various data types (integers, strings, floats) and perform basic set operations like union, intersection, and difference and print their results on screen.

Q2: Write a function to find the intersection of two sets.

Q3: Create a function to check if one set is a subset of another set.

Q4: Find the symmetric difference of two sets.

Q5: Remove duplicates from a list by converting it to a set.

Q6: Remove specific elements from a set.

Q7: Create a set of squares of numbers from 1 to 10 using a set comprehension.

Q8: Generate a set of unique vowels from a given string using a set comprehension.

Q9: Find common elements between two lists using sets.

Q10: Find the elements that are unique to each of two lists using sets.

Q11: Given two sets of strings, find common strings, unique strings in each set, and the total count of unique strings.

Q12: Convert a list to a set and then back to a list to remove duplicate items while preserving the original order.

Q13: Write a function to check if an element is present in a set.

Q14: Given a list of sets, find the union, intersection, and difference of all sets in the list.