黑馬程序員python教程,8天python從入門到精通,學python看這套就
2023-04-09 21:34 作者:violet_m572 | 我要投稿

p26 練習答案
name = "傳智播客" stock_price = 19.99 stock_code = "003032" stock_price_daily_growth_factor = 1.2 growth_days = 7 print(f"公司:{name}, 股票代碼:{stock_code},當前股價:{stock_price}") print("每日增長系數(shù)是:%.1f,經過%d天的增長后,股價達到了:%.2f" % (stock_price_daily_growth_factor, growth_days, stock_price_daily_growth_factor ** 7 * stock_price))
標簽: