Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 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.         y = y + 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement