Pluralize Word

Add a plural suffix to a word based on the given count.

Code

Utilities
f'{count} {word}{"" if count == 1 else "s"}'

Parameters

Word to pluralize.

Count for pluralization.

Server

More Python Snippets