print(dollar_amount(30, 0, 0, 0, 0))
在空闲窗口中输入后,我试图在 shell 中显示“150 美分”
。但是,相反,我收到此错误消息:
TypeError: unsupported operand type(s) for +: 'int' and 'str'
我正在使用 Python 3。
这是下面的问题:
def dollar_amount(nickels, dimes, quarters, loonies, toonies):
'''(int, int, int, int, int) -> str