aboutsummaryrefslogtreecommitdiff
path: root/challenge-179/eric-cheung/python/ch-1.py
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-179/eric-cheung/python/ch-1.py')
-rwxr-xr-xchallenge-179/eric-cheung/python/ch-1.py6
1 files changed, 6 insertions, 0 deletions
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("-", " "))