Fer said:
I've created dicts to translate any number up to 1000, the output will have a number, carriage return separated.
This course will become read-only in the near future. Tell us at community.p2pu.org if that is a problem.
Write a program to -
The Fibonacci series is easy to generate. You have to convert each number in words (Eg. 1=one, 2=two, ..etc) when you output the result to the file.
Example :
If the limit is n=5, then the Fibonacci series to be printed is : 0,1,1,2,3
And, the output to the file should be : zero, one, one, two, three
I've created dicts to translate any number up to 1000, the output will have a number, carriage return separated.