Michael C wrote:

>   for n in list(read_dictionary):
>>     print(read_dictionary[n])
>>     if read_dictionary[n] == '5':
>>         del read_dictionary[n]
> 
> After doing this how do I save it back to the dictionary?
> then i ll do this
> numpy.save('loc_string_dictionary.npy', dictionary)

Hm, the dict is called `read_dictionary`, so you save it with

numpy.save('loc_string_dictionary.npy', read_dictionary)

but I may have understood the question.
If so, please clarify.



_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor

Reply via email to