polyhedra_plurals

emmet.core.featurization.robocrys.util.polyhedra_plurals: dict[str, str] = {'cuboctahedra': 'cuboctahedra', 'hexagonal bipyramid': 'hexagonal bipyramids', 'hexagonal pyramid': 'hexagonal pyramids', 'octahedra': 'octahedra', 'pentagonal bipyramid': 'pentagonal bipyramids', 'pentagonal pyramid': 'pentagonal pyramids', 'square pyramid': 'square pyramids', 'tetrahedra': 'tetrahedra', 'trigonal bipyramid': 'trigonal bipyramids', 'trigonal pyramid': 'trigonal pyramids'}

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs

dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v

dict(**kwargs) -> new dictionary initialized with the name=value pairs

in the keyword argument list. For example: dict(one=1, two=2)