def hotel_cost(nights):
return nights * 140
bill = hotel_cost(5)
def add_monthly_interest(balance):
balance * (1 + (0.15 / 12))
def make_payment(payment, balance):
new_balance = add_monthly_interest(balance)
print "You still owe: " + str(new_balance)
make_payment(100,hotel_cost(5))
这是打印“你仍然欠:无”,我觉得我只是错过了一些非常基本的东西。我几乎是尽可能新的。Python 是我的第一语言,除了像我这一代人一样具有技术素养之外,没有其他真正的计算机知识。