From c7ee461c41c0b7889dbe89b403935b960d49a31d Mon Sep 17 00:00:00 2001 From: Paulo Custodio Date: Sat, 31 Aug 2024 15:35:44 +0100 Subject: Add Python solution to challenge 047 --- challenge-047/paulo-custodio/python/ch-1.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 challenge-047/paulo-custodio/python/ch-1.py (limited to 'challenge-047/paulo-custodio/python/ch-1.py') 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") -- cgit