Created
June 4, 2019 02:05
-
-
Save kguidonimartins/83f36a65f385a681b5c597d3c45dbcfe to your computer and use it in GitHub Desktop.
This file contains 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
def donuts(count): | |
if count >= 10: | |
count = "many" | |
print('Number of donuts:', count) | |
donuts(2) | |
donuts(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment