diff options
| author | 冯昶 <fengchang@novel-supertv.com> | 2024-09-02 15:40:05 +0800 |
|---|---|---|
| committer | 冯昶 <fengchang@novel-supertv.com> | 2024-09-02 15:40:05 +0800 |
| commit | 0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8 (patch) | |
| tree | d963a7fe57782d1d25580ea05c96f969768e8067 /challenge-047/paulo-custodio/python/ch-1.py | |
| parent | 30a42138e1d8bdd2f174e06fb18515ced0b2b241 (diff) | |
| parent | 0512711fccf91c731495f1dd901349cc900ec299 (diff) | |
| download | perlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.tar.gz perlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.tar.bz2 perlweeklychallenge-club-0c04a0825fd1dc67c5295fffdfbf3cb90ba075b8.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'challenge-047/paulo-custodio/python/ch-1.py')
| -rw-r--r-- | challenge-047/paulo-custodio/python/ch-1.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/challenge-047/paulo-custodio/python/ch-1.py b/challenge-047/paulo-custodio/python/ch-1.py new file mode 100644 index 0000000000..caebfcb2b6 --- /dev/null +++ b/challenge-047/paulo-custodio/python/ch-1.py @@ -0,0 +1,27 @@ +#!/usr/bin/env perl + +# Challenge 047 +# +# TASK #1 +# Roman Calculator +# Write a script that accepts two roman numbers and operation. It should then +# perform the operation on the give roman numbers and print the result. +# +# For example, +# +# perl ch-1.pl V + VI +# It should print +# +# XI + +import roman +import sys + +if len(sys.argv) != 4: + print("Usage: ch-1.py xxx +- xxx") +elif sys.argv[2] == "+": + print(roman.toRoman(roman.fromRoman(sys.argv[1])+roman.fromRoman(sys.argv[3]))) +elif sys.argv[2] == "-": + print(roman.toRoman(roman.fromRoman(sys.argv[1])-roman.fromRoman(sys.argv[3]))) +else: + print("Usage: ch-1.py xxx +- xxx") |
