From 6a2bfb87f57ececed07aaff17064d862f22b5ec1 Mon Sep 17 00:00:00 2001 From: Mohammad S Anwar Date: Mon, 22 Aug 2022 15:46:27 +0100 Subject: - Added guest contributions by Eric Cheung. --- challenge-179/eric-cheung/python/ch-1.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100755 challenge-179/eric-cheung/python/ch-1.py (limited to 'challenge-179/eric-cheung/python/ch-1.py') diff --git a/challenge-179/eric-cheung/python/ch-1.py b/challenge-179/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..6ab2c37ac5 --- /dev/null +++ b/challenge-179/eric-cheung/python/ch-1.py @@ -0,0 +1,6 @@ + +from num2words import num2words + +print (num2words(11).replace("-", " ")) +print (num2words(62).replace("-", " ")) +print (num2words(99).replace("-", " ")) -- cgit