1 2 3 4
def pluralize(text: str, count: int) -> str: if count == 1: return text return f"{text}s"
Generated by nedoc v0.10 at 2024-09-24 09:29