Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний код:
set1 = {1, 2, 3}
set2 = {3, 4, 5}
result = set1.difference(set2)
print(result)
{1, 2}
{3}
{1, 2, 3, 4, 5}
{4, 5}
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!