stocks.py 213 B

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