Re: [Tutor] Choosing between dictionary or external file

2017-06-28 Thread Alan Gauld via Tutor
On 28/06/17 17:44, Henrique C. S. Junior wrote: > using dictionaries to store information. Here is an example: > > > basis_sets = { > "Pople-style basis sets": { > "3-21G": "Pople 3-21G (H-Cs)", > "STO-3G": "Minimal basis set(H-I)", > "3-21GSP"

[Tutor] Choosing between dictionary or external file

2017-06-28 Thread Henrique C. S. Junior
Dear colleagues, how are you? I'm a scientist that is just starting with Python. I've decided to write a small software to generate inputs used in a Quantum Chemistry package. basically, we have to choose from several lists of options. Right now, I'm using dictionaries to store information. Here is