diff options
| author | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
|---|---|---|
| committer | Lubos Kolouch <lubos@kolouch.net> | 2024-09-16 09:41:35 +0200 |
| commit | 65b9d6b25e0a823ca7ab6d15744ff98eb3697471 (patch) | |
| tree | fcbcdebd50e3e146dfecf519701ec04b191053eb /challenge-047/paulo-custodio/python/ch-1.py | |
| parent | bd1fe7ae50ca42bda58c134b9edfdc287fb3f386 (diff) | |
| parent | 68e321dd32a834f54b55d5e8924f04358e41cf1f (diff) | |
| download | perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.gz perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.tar.bz2 perlweeklychallenge-club-65b9d6b25e0a823ca7ab6d15744ff98eb3697471.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") |
