Last active
November 6, 2017 17:37
-
-
Save yvan-sraka/da2c5ad61e995e219bdc7d231212c610 to your computer and use it in GitHub Desktop.
Python cash machine algorithme code to complete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BILLS = [200, 100, 50, 20, 10] | |
amount = 60 | |
i = 0 | |
while amount > 0: | |
BILLS[i] | |
... | |
... | |
print("Finish") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment