-
-
Save Blucknote/ae447b2b6be7f4cba9b801b30d9524f7 to your computer and use it in GitHub Desktop.
Python abstract plural
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 pluralize(n, lst): | |
if n % 10 == 1 and n % 100 != 11: | |
p = 0 | |
elif 2 <= n % 10 <= 4 and (n % 100 < 10 or n % 100 >= 20): | |
p = 1 | |
else: | |
p = 2 | |
return '{} {}'.format(str(n), lst[p]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment