I'm sure this is stupidly simple, but I am trying to add words to two different dictionary files I have created.
I think my problem is here:
myDict = Dictionary.Dictionary()
myDict2 = Dictionary.Dictionary()
Because when I write out the files, it writes the same thing to both files, even though I want them to be slightly different:
So, basically, is there a way to make these separate objects, rather than pointing to the same one? If you need more of the code, I can provide that as well.