x = ['a', 'b', 1, 2, 'A', 'B'] x.sort() print(x)
--------------------------------------------------------------------------- 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' |