11.13 LAB: Integer to Roman Numeral Write a Python program to convert an integer to a roman numeral. Try using this dict
Posted: Fri May 20, 2022 1:45 pm
11.13 LAB: Integer to Roman Numeral Write a Python program to convert an integer to a roman numeral. Try using this dictionary! roman_dictionary = {1000: "M", 900: "CM", 500: "D", 400: "CD", 100: "C", 90: "XC", 50: "L", 40: "XL", 10: "X", 9: "IX", 5: "V", 4: "IV", 1: "1"} Ex: Input 4000 Output MMMM 3969122566422.qx3zqy7 LAB ACTIVITY 11.13.1: LAB: Integer to Roman Numeral 0/10 main.py Load default template... 1 class conv(): 2 def int_to_Roman(self, num): 3 roman num = 4 " ''Add code here!!! 5