What Will Be The Output Of The Following Python Code Snippetp #535
What will be the output of the following Python code snippet?</p> <pre><code class="language-python">a=[1, 4, 3, 5, 2] b=[3, 1, 5, 2, 4] a==b set(a)==set(b)</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.5.
What will be the output of the following Python code snippet?
a=[1, 4, 3, 5, 2] b=[3, 1, 5, 2, 4] a==b set(a)==set(b)
True False
False False
False True
True True