vice.elements.recognized

Type : tuple [elements of type str]

The [lower-cased] symbols of all elements recognized by VICE as they appear on the periodic table.

New in version 1.1.0.

Example Code

>>> import vice
>>> "fe" in vice.elements.recognized
True
>>> "mg" in vice.elements.recognized
True
>>> "li" in vice.elements.recognized # VICE cannot do lithium yet
False
>>> "sr" in vice.elements.recognized
True
>>> "foo" in vice.elements.recognized
False