Given ``odd = set([1, 3, 5, 7, 9])``
``squares = set([1, 4, 9, 16])``.
What is the value of ``odd ^ squares``?
Answers
Answered by
0
Answer:
set([1,9])
Explanation:
We are given that
Odd=Set([1,3,5,7,9])
Squares=Set([1,4,9,16])
We have to find the value of
''oddsquares''=set([1,9])
There is, means intersection of both sets.
Therefore,
''oddsquares''=set([1,9])
Answer:''oddsquares''=set([1,9])
Answered by
1
Answer:
b. set([3, 4, 5, 7, 16])
Explanation:
Similar questions