Let’s say I have a text file with the following:
line = "this is line 1"
line2 = "this is the second line"
line3 = "here is another line"
line4 = "yet another line!"
And I want to quickly convert these into dictionary keys/values with ” line* ” being the key and the text in quotes as the value while also removing the equals sign.
What would be the best way to do this in Python?
Hope this helps