Hi Foks, This code illustrates how to print the NATO phonetic alphabet in Python3. prompt_response = str ( input ( "Enter your name?" )) dict = { 'A' : 'Alpha' , 'B' : 'Bravo' , 'C' : 'Charlie' , 'D' : 'Delta' , 'E' : 'Echo' , 'F' : 'Foxtrot' , 'G' : 'Golf' , "H" : "Hotel" , 'I' : 'India' , 'J' : 'Juliet' , 'K' : 'Kilo' , 'L' : 'Lima' , 'M' : 'Mike' , 'N' : 'November' , 'O' : 'Oscar' , 'P' : 'Papa' , 'Q' : 'Quebec' , 'R' : 'Romeo' , 'S' : 'Sierra' , 'T' : 'Tango' , 'U' : 'Uniform' , 'V' : 'Victor' , 'W' : 'Whiskey' , 'X' : 'Xray' , 'Y' : 'Yankee' , 'Z' : '...
This is my self-experience blog. in shorts, my own thoughts, and experiments using different tools towards problem-solving. I hope this will help you to understand concepts.