Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. def sort_best_results(stock_results):
  2.     for datum in stock_results:
  3.         best_stock_dates.append(datum[0])
  4.         best_stock_prices.append(datum[1])
  5.  
  6. def sort_worst_results(stock_results):
  7.     for datum in stock_results:
  8.         worst_stock_dates.append(datum[0])
  9.         worst_stock_prices.append(datum[1])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement