Guest User

Untitled

a guest
Oct 17th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. [('b', 9), ('d', 9), ('a', 10), ('c', 10)] или
  2. [('b', 9), ('d', 9), ('с', 10), ('a', 10)] или
  3. [('d', 9), ('b', 9), ('a', 10), ('c', 10)] и т.д.
  4.  
  5. >>> import random
  6. >>> sorted([1,2,3], key=lambda _: random.randrange(10))
  7. [2, 1, 3]
  8. >>> sorted([1,2,3], key=lambda _: random.randrange(10))
  9. [1, 3, 2]
Add Comment
Please, Sign In to add comment