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
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
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' |
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic