I've looked around on the internet but I haven't found anything that works.
I want to turn dovah.csv
into a dictionary for a translator.
Is there a way to specifically format it like this?
english_to_dovahzul = {
'the': 'faal',
'quick': 'nel',
'brown': 'prun',
'fox': 'ilit'
}
dovahzul_to_english = {v: k for k, v in.english_to_dovahzul.items()}