Iterating through CSV rows with Panda

data = pandas.read_csv("docs/solutions/day_26/nato_phonetic_alphabet.csv")
phonetic_dict = {row.letter: row.code for (index, row) in data.iterrows()}


all tags