Guest User

Untitled

a guest
Mar 11th, 2016
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. start_list = [5, 3, 1, 2, 4]
  2. square_list = []
  3.  
  4. # Your code here!
  5. for square_list in start_list:
  6. square_list.append(start_list ** 2)
  7.  
  8. square_list.sort()
  9. print square_list
Add Comment
Please, Sign In to add comment