+ # Let's replace the actual numbers with written, phonetic numbers to avoid things like\r
+ # "6012" audible as "six thousand twelve". Note the space after each number.\r
+ # We need to do this after the string checks performed before.\r
+ # Placing this here shows original text in console - but pronounces the numbers correctly.\r
+ newline = newline.replace("0", "Zero ")\r
+ newline = newline.replace("1", "One ")\r
+ newline = newline.replace("2", "Two ")\r
+ newline = newline.replace("3", "Three ")\r
+ newline = newline.replace("4", "Four ")\r
+ newline = newline.replace("5", "Five ")\r
+ newline = newline.replace("6", "Six ")\r
+ newline = newline.replace("7", "Seven ")\r
+ newline = newline.replace("8", "Eight ")\r
+ newline = newline.replace("9", "Niner ")\r
+\r