Sometimes symbols like variables take a plural name (fx when referring to a container), for example:
languages = ['English', 'French', 'German']
When then referring to the variable in for example documentation, should it be considered singular or plural (eg should one use singular or plural form of verbs). That is should I write:
languages contains the supported languages.
or
languages contain the supported languages.
Also note that it's a possibility that the container only contains one element.
languageorlanguages, it's already decided to call itlanguages. The question is whether the symbol then should be considered a plural or singular noun, ie whether I should write "languagescontain..." or "languagescontains...". – skyking Jul 11 '22 at 08:53languagesis a single set, so it takes a singular verb (just as I did with is). – Andrew Leach Jul 11 '22 at 08:54