这是啥意思,没看懂。。。
# F=P*(1+i)**n P = float(input("请输入期初金额:")) i = float(input("请输入利率或折现率:")) n = int(input("请输入计息期数:")) F = P*(1+i)**n print("期末本利和的价:",F)