What Will Be The Output Of The Following Python Codep Pre #507
What will be the output of the following Python code?</p> <pre><code class="language-python"> >>> a={1,2,3} >>> a.intersection_update({2,3,4,5}) >>> a </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Python Sets - Python Sets - Quiz No.3.
What will be the output of the following Python code?
>>> a={1,2,3} >>> a.intersection_update({2,3,4,5}) >>> a
{2,3}
Error, duplicate item present in list
Error, no method called intersection_update for set data type
{1,4,5}