Skip to content

Instantly share code, notes, and snippets.

@kguidonimartins
Created June 4, 2019 02:05
Show Gist options
  • Save kguidonimartins/83f36a65f385a681b5c597d3c45dbcfe to your computer and use it in GitHub Desktop.
Save kguidonimartins/83f36a65f385a681b5c597d3c45dbcfe to your computer and use it in GitHub Desktop.
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