I have a tuple that looks like this:
List=[
('actinium-225', '10', '314'),
('actinium-226', '1.2238', '110'),
('americium-240', '2.117', '395'),
('berkelium-245', '4.94', '182'),
]
The list goes on, anyways so I've been searching how to unpack these to create a dictionary so that I can calculate the radioactive decay rates of these elements given the first value is the element, the second being the half life and third the remaining stock quantity (in grams).
I need something like this
Dict={
1: ('actinium 225', 10, 314),
2: ('actinium-226', 1.2238, 110),
3: ('americium-240', 2.117, 395),
4: ('berkelium-245', 4.94, 182),
}