Shows a periodic table of elements
Code: "periodic_table.py". Programming language: Python
DMelt Version 1.4. Last modified: 05/12/1975. License: Free
https://datamelt.org/code/cache/periodic_table_6168.py
To run this script using the DMelt IDE,
copy the above URL link to the menu [File]→[Read script from URL] of the DMelt IDE.
# Shows a Mendeleev's Periodic Table with additional properties
from jehep.utils.ptable import Jptapp
from javax.swing import JFrame
ut = Jptapp()
f = JFrame()
f.add(ut)
ut.init()
f.setSize(650,660)
f.setVisible(True)