You are viewing a single comment's thread. Return to all comments →
regex_pattern = r"^M{,3}(CM|CD|D?C{,3})(XL|L?X{,3}|XC)(I{,3}|IV|V?I{,3}|IX)$" import re print(str(bool(re.match(regex_pattern, input()))))
Seems like cookies are disabled on this browser, please enable them to open this website
Validating Roman Numerals
You are viewing a single comment's thread. Return to all comments →