- A TypeError
- B ['a', 'b', 'c', 'A', 'B', 'C']
- C ['a', 'A', 'b', 'B', 'c', 'C']
- D ['A', 'B', 'C', 'a', 'b', 'c']
- Share this MCQ
Answer:
A
Share this MCQ
TypeError
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) Input In [83], inClick me to Read more Question & Answer of Python Random Module MCQ() 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 MCQ