Home / CSE MCQs / Python MCQs :: Discussion

Discussion :: Python MCQs

  1. Which of the following lines of code will result in an error?
  2. A.
    s={abs}
    B.
    s={4, 'abc', (1,2)}
    C.
    s={2, 2.2, 3, 'xyz'}
    D.
    s={san}

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    The line: s={san} will result in an error because 'san' is not defined. The line s={abs} does not result in an error because abs is a built-in function. The other sets shown do not result in an error because all the items are hashable.


Be The First To Comment