MCQ Single Best Answer Not Set

QWhat will be the output after the following statements?
x = ['a', 'b', 1, 2, 'A', 'B']
x.sort()
print(x)

ID: #3995 Python Errors and Exceptions Handling 448 views
Question Info
#3995Q ID
Not SetDifficulty
Python Errors and Exceptions HandlingTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A TypeError
  • B ['a', 'b', 'c', 'A', 'B', 'C']
  • C ['a', 'A', 'b', 'B', 'c', 'C']
  • D ['A', 'B', 'C', 'a', 'b', 'c']
Correct Answer: Option A

Explanation

TypeError
 
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
Input In [83], in ()
      1 x = ['a', 'b', 1, 2, 'A', 'B']
----> 2 x.sort()
      3 print(x)

TypeError: '<' not supported between instances of 'int' and 'str'

Share This Question

Challenge a friend or share with your study group.