Guest User

Untitled

a guest
Jun 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # Create lists first and second
  2. first = [11.25, 18.0, 20.0]
  3. second = [10.75, 9.50]
  4.  
  5. # Paste together first and second: full
  6.  
  7. full = first + second
  8. # Sort full in descending order: full_sorted
  9.  
  10. full_sorted = sorted(full,reverse=True)
  11. # Print out full_sorted
  12. print(full_sorted)
Add Comment
Please, Sign In to add comment