I have written a script that executes for a single entry. However I have a database of 17,000 entries, in the form of a dictionary. I would like to perform these calculations on each entry just once, and each calculation output be written to a text file.
The dictionary is called DVG_dict. The key is called "n_seq" The line I used to start the loop is:
for i in range(len(DVG_dict)):
For some reason this code is not working. Any ideas?