Skip to content

Instantly share code, notes, and snippets.

@rswift
Created October 9, 2021 12:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rswift/cd09709e69f204046cf46eded8a9c386 to your computer and use it in GitHub Desktop.
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