aboutsummaryrefslogtreecommitdiff
path: root/challenge-002/abigail/python/ch-2.py
diff options
context:
space:
mode:
authorMohammad S Anwar <Mohammad.Anwar@yahoo.com>2021-01-26 15:48:31 +0000
committerGitHub <noreply@github.com>2021-01-26 15:48:31 +0000
commitb4d2998acaab110134b17acacedca0645cc011d4 (patch)
tree66741a6d0ae8b19611b4b9f6be1e470de7e85af7 /challenge-002/abigail/python/ch-2.py
parent224ce57074c8183cb687c8395897eb03e0230ce3 (diff)
parent9aeed56c942517679d2e97deea955c6f72abd70a (diff)
downloadperlweeklychallenge-club-b4d2998acaab110134b17acacedca0645cc011d4.tar.gz
perlweeklychallenge-club-b4d2998acaab110134b17acacedca0645cc011d4.tar.bz2
perlweeklychallenge-club-b4d2998acaab110134b17acacedca0645cc011d4.zip
Merge pull request #3378 from Abigail/abigail/week-002
Abigail/week 002
Diffstat (limited to 'challenge-002/abigail/python/ch-2.py')
-rw-r--r--challenge-002/abigail/python/ch-2.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/challenge-002/abigail/python/ch-2.py b/challenge-002/abigail/python/ch-2.py
new file mode 100644
index 0000000000..22fe4fcaf0
--- /dev/null
+++ b/challenge-002/abigail/python/ch-2.py
@@ -0,0 +1,63 @@
+#!/opt/local/bin/python
+
+#
+# See ../READ.md
+#
+
+#
+# Run as python ch-2.py {-f | -t} < input-file
+#
+
+import fileinput
+import sys
+import getopt
+
+BASE = 35
+
+#
+# Parse options
+#
+do_to_base = 0
+do_from_base = 0
+opts, args = getopt . getopt (sys . argv [1:], 'ft')
+
+for opt, val in opts:
+ if opt == "-f":
+ do_from_base = 1
+ elif opt == "-t":
+ do_to_base = 1
+
+if do_to_base + do_from_base != 1:
+ print "Need exactly one of -f or -t"
+ sys . exit (1)
+
+
+#
+# Translate a base 10 number to base 35
+#
+def to_base (number):
+ out = ""
+ while number > 0:
+ rest = number % BASE
+ if rest < 10:
+ char = str (rest)
+ else:
+ char = chr (65 + rest - 10)
+ out = char + out
+ number = int (number / BASE)
+ return out
+
+
+#
+# Translate a number from base BASE to base 10
+#
+def from_base (number):
+ return int (number, BASE)
+
+#
+# Need to clean argv, else fileinput will try to open a file
+#
+sys . argv [1:] = []
+
+for line in fileinput . input ():
+ print from_base (line) if do_from_base else to_base (int (line))