stocks.py 244 B

1234567
  1. # stock name, stock number, max price, min(price * drop) in B
  2. # So this means: stock name, stock # 15 (FHC), max price $335 and a > $10B drop
  3. fhc = ("FHG", 15, 335, 10)
  4. yaz = ("YAZ", 8, 60, 10)
  5. # Put all stocks in this set
  6. stocks = (fhc, yaz)