2
name = "傳智播客"
stock_price = 19.99
stock_code = "003032"
stock_price_daily_growth_factor = 1.2
growth_days = 7
price = stock_price * (stock_price_daily_growth_factor ** growth_days)
print(f"公司:{name},股票代碼:{stock_code},當(dāng)前股價(jià):{stock_price}")
print("每日增長系數(shù)是:%.1f,經(jīng)過%d天的增長后,股價(jià)達(dá)到了:%.2f"%(stock_price_daily_growth_factor,growth_days,price))
標(biāo)簽: