Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Set basics
Relationships between sets
Summary
17. Question 2

Instruction

Fantastic! One more question.

Exercise

You are given two lists for two different phone models. Each list contains the main features of a given phone.

Help a customer decide that phone to choose by creating a function named find_unique_features(set1, set2) which finds unique features for both phones. Return a tuple with these two elements, in this order:

  1. A set with features unique to phone A.
  2. A set with features unique to phone B.

Stuck? Here's a hint!

Use the difference() function.