nested dict copies the keys of the other key?

def add_vocabulary(vokabulary): #{"12:11:2023": {"english": "german", "english1": "german1"}} dater = datetime.datetime.now().strftime("%d:%m:%Y") dater="13:11:2023" new_vocabulary = {dater: {"german3": 'english3'}} data = dict(pd.read_json("German-English_wordlist.json")) round=0 for key in data.keys(): print(data) round+=1 if key == dater: print(dater, key) data[dater]["english3"] = "gnglih" else: if len(data.keys()) == round: data[dater] = {} data[dater]["english3"] = "gngh" dateframe = pd.DataFrame( data ).to_json("German-English_wordlist.json") print(data)

Original: Jason datai content:

 {"12:11:2023":{"englis":"gnglish","english3":"gnglis\\h","germanr":"englishz"}}

When I create a new key code:

 data[dater] = {} :

Occurrence:

All keys from "12:11:2023" are copied to "13:11:2023" 🙁

output

 {"12:11:2023":{"englis":"gnglish","english3":"gnglis\\h","germanr":"englishz"},"13:11:2023":{"englis":null,"english3":null,"germanr":null}}

Expectation:

 {"12:11:2023":{"englis":"gnglish","english3":"gnglis\\h","germanr":"englishz"},"13:11:2023":{}}

on it

Occurrence:

in key "13:11:2023" create the key and value {"english3":"gngh"} (in my case overwrite) code:

 data[dater]["english3"] = "gngh"

output:

 {"12:11:2023":{"englis":"gnglish","english3":"gnglis\\h","germanr":"englishz"},"13:11:2023":{"englis":null,"english3":gngh,"germanr":null}}
(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
13 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
KarlRanseierIII
1 year ago
data[dater] = {}

Where in your code is this to take place?

KarlRanseierIII
1 year ago
Reply to  ware37

Dumb question why do you even know about the keys()?

if dater in data:
     data[dater]["english3"] = "gnglih"
else: #key no present
    data[dater]={}

I’m looking at the Doku for a second.

KarlRanseierIII
1 year ago

https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html

If you go down, there’s a play, then NaN is apparently generated with missing values, i.e. the Pandas object forces a tabular form.

This is the real part you stumble on. You should read in more detail and see what you actually want to do.

KarlRanseierIII
1 year ago

And a JSON file you are recovering from the dict, do I suppose?

Could it be quite possible that the data structure is based on a table and therefore does not necessarily supplement existing fields as NULL to have uniform tuples? So that to_json() this supplements the so ne PAnda story?

Only as a marginal note, Python itself also has a JSON module, so as long as you only want to process JSON, you might also use it.

Aha:

The to_json() function is used to convert the object to a JSON string.

Note: NaN’s and None will be converted to null and datetime objects will be converted to UNIX timestamps.

KarlRanseierIII
1 year ago
data = dict(pd.read_json("German-English_wordlist.json"))

Are you sure this is what you want? I have keien experience with Pandas, but according to Doku, the to_dict() MEthode should create a dictionary, so more

pd.read_json(..).to_dict()

something?

KarlRanseierIII
1 year ago

I’m missing the context, somewhere the Stale Entries have to come. The thing is:

data[dater]["english3"] = "gngh" 

In the event that there is data in data udn is not just generated, in the existing dict the key english3 is set to gngh, the output also shows that. So the question is where the other keys come from?

KarlRanseierIII
1 year ago
if dater not in data:
    data[dater]={}
#Wenn jetzt keien Fallunterscheidung mehr benötigt:
data[dater]["english3"] = "gngh" 

If you are only concerned with the problem that a more unprecedented key should be created.

KarlRanseierIII
1 year ago

I have not found anything definitive on the fast, but my feeling tells me that it is a bad idea to change a dictionary (especially in length) while you are iterating over an ikeys() view.

If, then you would probably have to iterate over the keys() a stable copy to execute the modifications on the original.

But as I said, I don’t see why you’re expensive about the keys if you can make a lookup directly.