top of page

NATO alphabet

  • Writer: 라임 샹큼
    라임 샹큼
  • 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.


 
 
 

Recent Posts

See All
Password Manager

import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...

 
 
 
Pomodoro alarm

import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...

 
 
 

Comments


© 2024 by GifTED. Powered and secured by Wix

bottom of page