Guest User

new

a guest
Jan 6th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 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. full = first + second
  7.  
  8. # Sort full in descending order: full_sorted
  9. full_sorted = sorted(full, reverse= True)
  10.  
  11. #Print out full_sorted
  12. print(full_sorted)
Advertisement
Add Comment
Please, Sign In to add comment