Skip to content
Advertisement

How do I create a dictionary from a .txt file with whitespace in python

This is the .txt file that I have to work with. I cannot change the file in anyway.

JavaScript

I am having an issue turning this file into a dictionary. This is the method that I am currently trying to use.

JavaScript

The issue is when there is an extra space between the sets of text in the .txt file. When there are no extra spaces, I can create the dictionary without any issues.

JavaScript

This is the error that I am getting. How do I fix this issue?

Advertisement

Answer

The issue here is that an empty line will be ‘n’, so you can’t distinguish between an empty line vs other lines given that all lines will end with ‘n’. Here’s my suggestion using list comprehension and a for loop. Probably could do it in a single dict comprehension.

JavaScript

Output:

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