Skip to content

Instantly share code, notes, and snippets.

@rswift
Created October 9, 2021 12:33
Show Gist options
  • Select an option

  • Save rswift/cd09709e69f204046cf46eded8a9c386 to your computer and use it in GitHub Desktop.

Select an option

Save rswift/cd09709e69f204046cf46eded8a9c386 to your computer and use it in GitHub Desktop.
simple plurals in python...
#
# hat tip: https://stackoverflow.com/users/173003/aristide via https://stackoverflow.com/a/65063284/259122
#
# shamelessly copied and included here for easier self-location!
#
for i in range(5):
print(f"{i} bottle{'s'[:i^1]} of beer.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment