3

Command WordData["Word", "Properties"] seems to return an endless list of properties, such as:

"Definitions", "PartsOfSpeech", "Definitions", "Examples", "Synonyms", "Antonyms", "BroaderTerms", "NarrowerTerms", "ConceptWeight", "BritishSpelling", "AmericanSpelling"...

Is it possible obtain a complete list of it?

VividD
  • 3,660
  • 4
  • 26
  • 42
Putterboy
  • 4,661
  • 1
  • 19
  • 30

1 Answers1

4

The complete list can be obtained using

WordData["Properties"]

or using

WordData["anyword","Properties"]

WordData["Properties"] // Row[#, " \[CenterDot] "] &

enter image description here

Note: ElementData, ColorData, CountryData, CityData, ChemicalData, etc., work similarly.

kglr
  • 394,356
  • 18
  • 477
  • 896