From c55c04fc11aa8e2df1de3fe815f785bac491aa35 Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Sat, 6 Aug 2016 18:18:59 +0200 Subject: [PATCH] Digits code words from ITU/IMO added --- nato_converter.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/nato_converter.py b/nato_converter.py index c5631aa..07a4b88 100755 --- a/nato_converter.py +++ b/nato_converter.py @@ -30,7 +30,17 @@ table = { "w": "whiskey", "x": "x-ray", "y": "yankee", - "z": "zulu" + "z": "zulu", + "0": "Nadazero", + "1": "Unaone", + "2": "Bissotwo", + "3": "Terrathree", + "4": "Kartefour", + "5": "Pantafive", + "6": "Soxisix", + "7": "Setteseven", + "8": "Oktoeight", + "9": "Novenine" } class IllegalStringSize(Exception):