I want to be able to add two numbers that are inputted by the user (as strings), and then output the result still as a string. For example:
Input 1 - 'three' Input 2 - 'seven'
Output - 'ten'
I am trying to do this without using any external libraries.
I first tried creating a list and matching each entry up with its index number, but this proved to be highly inefficient.
numbers = ['zero','one','two','three','four'... number = numbers[index]