NATO alphabet
- 라임 샹큼
- 7 days ago
- 1 min read
import pandasdata = pandas.read_csv('nato_phonetic_alphabet.csv')phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}print(phonetic_dict)name = input('Enter a word:\n')for letter in name: capital = letter.upper() print(f'{capital} for {phonetic_dict[capital]}')
I tried using the pandas library and the iterrows function. I must admit using the iterrrows function is hard to grasp at first.
Comments