我正在尝试编写一个短代码来计算由于每日利息而达到银行给定本金所需的天数。在 IDLE 中运行时,使用下面的代码不会产生任何错误,但计数器返回 0。有什么我错过的想法吗?
def main():
# irrelevant code elided by msw, Bal, Int and Tar are numeric
counter = 0
for i in range(0):
if (Bal * Int) == Tar:
print '1'
else:
counter + 1
print counter