-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroman_numerals_encoder.py
29 lines (24 loc) · 1.05 KB
/
roman_numerals_encoder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
print('From Code Wars.')
print()
def solution():
# This function takes a positive integer (1 - 9999) as its parameter and returns
# a string containing the Roman Numeral representation of that integer.
n = input('Please, type in the number you want to convert to roman numeral: ')
nums = []
num = str(n)
while num:
nums.append(num[0] + '0' * len(num[1:]))
num = num[1:]
numbers = [int(n) for n in nums if not n.startswith('0')]
dict_M = {
1000: 'M', 2000: 'MM', 3000: 'MMM', 4000: 'IV',5000: 'V', 6000: 'VI',
7000: 'VII', 8000: 'VIII', 9000: 'IX',
100: 'C', 200: 'CC', 300: 'CCC', 400: 'CD', 500: 'D', 600: 'DC',
700: 'DCC', 800: 'DCCC', 900: 'CM',
10: 'X', 20: 'XX', 30: 'XXX', 40: 'XL', 50: 'L', 60: 'LX',
70: 'LXX', 80: 'LXXX', 90: 'XC',
1: 'I', 2: 'II', 3: 'III', 4: 'IV', 5: 'V', 6: 'VI',
7: 'VII', 8: 'VIII', 9: 'IX'
}
return 'The result is '+''.join([dict_M[r] for r in numbers]) +'.'
print(solution()) # Input - 1990 - Outputs - MCMXC