python分支语句的实现
小明去买玩具,每个玩具的价格分别为6元、13元、15元、20元,小计想把钱用光同时尽量玩具数量最多(优先花完钱),输入小计的零花钱,输出每种价格玩具购买的数量(小计的零花钱为大于等于35元的整钱)。#(那位大佬帮忙解决一下)如果只是 6元、13元、15元、20元,零用錢 35元整
代碼:from itertools import permutati**
toys =
buy = [ for i in range(len(toys))]
res = []
for i in buy:
if i:
for j in i:
if sorted(j) not in res:
res.append(j[:])
print(*res)
页:
[1]