Skip to content
Advertisement

turn a multiple line of txt file into a dictionary

I have a multiple line of text like:

JavaScript

and I need a way to read the txt file, and turn it into a dictionary like this

JavaScript

so i can use

JavaScript

and get the result of match that ended in draw

is there a way to achieve this?

Advertisement

Answer

I would suggest to use a .json file, this way:

JavaScript

The parsing would be done this way:

JavaScript

It is possible to parse a .txt file too, even if it’s a bad practice to store datas this way. When I suggested to store a dictionary in a .txt file in a way similar to yours, one expert told me:

Unless you want to reinvent the wheel, you should use a .json file


You can anyway split the lines this way:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement