黑马程序员python教程,8天python从入门到精通,学python看这套就

p26练习
股票计算小程序
name = "传智播客"
stock_price = 19.99
stock_code = "003032"
print(f"公司名:{name},股票代码:{stock_code},当前股价:{stock_price}")
storck_price_daily_growth_factor = 1.2
growth_days = 7
dest =19.99*1.2**7
print("19.99*1.2**7",19.99*1.2**7)
slt = 71.62778419199998
print("股价达到了:%.2f" %(slt))
stll = 71.62778419199998
print("每日增长系数:%.2f,经过:%d天的增长后,股价达到了:%.2f" %(storck_price_daily_growth_factor,growth_days,stll))