====== LU05.L03: Käsebank ====== [[https://youtu.be/cHnoHnro4DU|Lösung als Video]] ===== Blockly ===== {{:modul:m319python:learningunits:lu05:loesungen:lu05_kaesebank_loesung.png?400|}} ===== Python ===== bills = [200, 100, 75, 25, 1] input_string = input("Gewünschter Betrag > ") amount = int(input_string) index = 0 while amount > 0: if bills[index] > amount: index += 1 else: print (str(bills[index]) + ' KD') amount = amount - bills[index]