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 は私の最初の言語であり、私の世代のほとんどの言語ほど技術的な読み書きができること以外に、実際のコンピューターに関する知識はありません。