gpt4 book ai didi

python - 将输入分解为列出的频率

转载 作者:行者123 更新时间:2023-12-01 08:46:21 25 4
gpt4 key购买 nike

我正在尝试编写一个函数,计算某个值的最低可能的硬币找零返回,例如您可以用 0.50 + 0.20 给出 0.70。

这是我到目前为止编写的代码:

def pay_with_coins( amount ):
amount = float()
numberof200 = 2.00
numberof100 = 1.00
numberof050 = 0.50
numberof020 = 0.20
numberof010 = 0.10
numberof005 = 0.05
numberof002 = 0.02
numberof001 = 0.01
change = []
no200counter = amount.count(numberof200)
no100counter = amount.count(numberof100)
no050counter = amount.count(numberof050)
no020counter = amount.count(numberof020)
no010counter = amount.count(numberof010)
no005counter = amount.count(numberof005)
no002counter = amount.count(numberof002)
no001counter = amount.count(numberof001)
numberofchange = no200counter + no100counter + no050counter + no020counter + no010counter + no005counter + no002counter + no001counter

if no200counter > 0: +1
elif no100counter > 0: +1
elif no050counter > 0: +1
elif no020counter > 0: +1
elif no010counter > 0: +1
elif no005counter > 0: +1
elif no002counter > 0: +1
elif no001counter > 0: +1

change.append(numberofchange)
return list(change)

我在代码中尝试用 if 语句做的是,它检查下一个最大的变化值是否可以计入我们的金额,在我的列表中的索引处添加一个,该索引最终应该返回,移动当当前的变化值不再能够影响我们的金额时,转到可用的下一个最大变化值(这在我下面给出的示例中得到了更好的说明)。

我遇到的一个问题是我的控制台显示“float”对象没有属性“count”,但我想确保该金额是 2dp float。

我想以 [2.00, 1.00, 0.50, 0.20, 0.10, 0.05, 0.02, 0.01] 的格式列出输出值,并且每个元素的增加取决于其中的数量。因此,没有输入的输出应该是 [0, 0, 0, 0, 0, 0, 0, 0]。

如果我们要找到对上面示例的更改(0.70),我希望我的输出是:

[0, 0, 1, 1, 0, 0, 0, 0]

另一个例子是查找 5.18 的更改。输出应该是:

[2, 1, 0, 0, 1, 1, 1, 1]

我想要列出最终输出的方式有点类似于二进制转换,只不过如果需要的话每个“位”可以超过 1。

正如你所看到的,我知道如何编写它,但我只是在努力解决如何实际将其组合在一起的问题。请帮忙?

最佳答案

这段代码应该可以解决您的问题。让我知道结果如何

def pay_with_coins( amount ):
allCoins = [2.00, 1.00, 0.50, 0.20, 0.10, 0.05, 0.02, 0.01]

change = []
for coin in allCoins:
# Find out how many maximum coins can fit into the amount. Ex for amount 5 a max of 2 coins of value 2 can fit
n = (int)(amount / coin)
change.append(n)
# Substract the value of amount for which change is generated.
# Ex - for amount 5, and coin 2, $4 change will be generated and balance left will be $1
amount = round(amount - (n * coin), 2) # Rounding to 2 decimals

return change

print(pay_with_coins(5.18))
Output - > [2, 1, 0, 0, 1, 1, 1, 1]

关于python - 将输入分解为列出的频率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53291892/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com