Advertisement
Gonef

Untitled

Feb 24th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. while kwota > 0:
  2. if kwota >= (nominal[y]):
  3. z = int(kwota / nominal[y])
  4. lista.append(str(z) + ' * ' + str(nominal[y]))
  5. kwota = kwota - z * (nominal[y])
  6. elif y == 15:
  7. break
  8. y = y + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement