Guest User

Untitled

a guest
Feb 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. a = [{'name':'cde', 'id':1}, {'name':'abc', 'id':2}]
  2.  
  3. TypeError: '<' not supported between instances of 'int' and 'str'
  4.  
  5. for i in range(len(a)):
  6. sorted(a[1]['name'], key=itemgetter(0))
  7.  
  8. ['a', 'b', 'c']
  9. ['a', 'b', 'c']
Add Comment
Please, Sign In to add comment