Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. coordx=[]
  2. ids=[]
  3. list=[]
  4. for i in IN[0]:
  5.     coordx.append(UnwrapElement(i).Location.Point.X)
  6.     ids.append(UnwrapElement(i).Id)
  7.  
  8. list=zip(coordx, ids)
  9. OUT=sorted(list, key=itemgetter(0))