I think I can avoid reinventing the wheel here.
I need a Python script to convert from numbers to words for printing cheques.
E.g. 1,10,543 should provide output as One lac ten thousand five hundred and forty three.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Have written a custom converter with the foll features:
catering to Indian subcontinent i.e. lacs and crore (The range is big
enough to accomodate lot of use cases)
Profiling information: This script has lesser performace in terms of execution time of 0.458 seconds against 0.237 seconds of the above script for exactly 10000 runs.