Python银行ATM

时间:2018-07-18 20:50:19

标签: python

因此,我完成了对银行ATM机进行编码的功课,并且完成了大部分代码,但是我似乎做的工作并不像教授所说的那样:“如果用户输入了无效的数值,请照此通知用户。如果用户输入的有效数字介于0到100之间,则显示帐户中剩余的资金金额“

  

示例:

     

kitten : "Invalid Entry".
  20.5 : "Your account has $79.50 remaining"

到目前为止,我的代码:

amt = int(input("Withdraw amount: "))

if amt <= 0:
    print("Invalid Amount")
else:
    print{"Invalid Entry")

if amt > 100:
    print("Not enough funds in account")

if (amt >=0 and amt <=100):
    print("Your account has ${0:1.2f} remaining." .format(100-amt))

我的问题是,当我输入20.5时出现错误

"ValueError: invalid literal for int() with base 10: '20.5'"

第二个问题是当我输入字符串"ValueError: invalid literal for int() with base 10: 'kitten'"

2 个答案:

答案 0 :(得分:1)

输入20.5会给您一个错误的原因是因为在amt变量中,它正在寻找要输入的整数。在python中,任何带小数的数字都被视为浮点数。

当前用于amt变量的代码

amt = int(input("Withdraw amount: "))

为使amt变量具有一个带有小数的数字作为可接受的输入,amt变量应为:

amt = float(input("Withdraw amount: "))

答案 1 :(得分:0)

您正在将所有内容都转换为int,因此放入字符串和双精度数会给您带来错误。您需要先检查输入内容,然后再将其盲目转换为整数。

您需要考虑代码的实际作用,而不是盲目地更改事物直到它们起作用而又不了解原因。