atomic_number¶
-
plasmapy.atomic.atomic_number(element: plasmapy.atomic.particle_class.Particle) → int¶ Return the number of protons in an atom, isotope, or ion.
Parameters: element (
strorParticle) – A string representing an element, isotope, or ion; or an instance of theParticleclass.Returns: atomic_number – The atomic number of an element.
Return type: Raises: See also
mass_number: returns the mass number (the total- number of protons and neutrons) of an isotope.
Examples
>>> atomic_number("H") 1 >>> atomic_number("tritium") 1 >>> atomic_number("alpha") 2 >>> atomic_number("oganesson") 118