Skip to content
Advertisement

Creating a Dictionary from a Text File in Python

I found a few other posts regarding this topic, but I’m having issues getting it to work for my instance; I am relatively new to Python so I apologize. Below is an example of the first few lines of a txt file that I have:

JavaScript

Every value is separated by a space and I want to create keys for each so it would be Year, Month, Day, Minute, Second, Millisecond, Longitude, Latitude, and Altitude.

Below is code I am attempting to use, but it’s not working properly and throwing the following error below my code.

JavaScript
JavaScript

If you could please provide some guidance as to what I am doing wrong and how to fix it I would appreciate it!

Advertisement

Answer

You could using pandas.to_dict("list") as follows:

JavaScript

Result:

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