要求:打印的第一行使用f控制,第二行打印使用占位符,股价输出保留两位小数。
# 股价计算小程序
name="周氏集团"
stock_price=19.99
stock_code= "9283"
stock_price_daily_growth_factor=1.2
growth_days=7print(f"公司:{name},股票代码:{stock_code},当前股价{stock_price}")
print("每日增长系数是:%.1f,经过%d天增长后,股价达到了%.2f" %( stock_price_daily_growth_factor,growth_days,(stock_price*stock_price_daily_growth_factor**growth_days)))
运行结果: