15 lines
498 B
Python
15 lines
498 B
Python
import pandas as pd
|
|
|
|
# Keyword Method with iterrows()
|
|
# {new_key:new_value for (index, row) in df.iterrows()}
|
|
|
|
#TODO 1. Create a dictionary in this format:
|
|
# {"A": "Alfa", "B": "Bravo"}
|
|
|
|
data = pd.read_csv("nato_phonetic_alphabet.csv")
|
|
dict = { row.letter:row.code for (index, row) in data.iterrows() }
|
|
|
|
#TODO 2. Create a list of the phonetic code words from a word that the user inputs.
|
|
|
|
input = list(input("Which word do you want to spell?\n"))
|
|
print([ dict[letter.upper()] for letter in input]) |