- 11 13 Lab Integer To Roman Numeral Write A Python Program To Convert An Integer To A Roman Numeral Try Using This Dict 1 (44.49 KiB) Viewed 16 times
11.13 LAB: Integer to Roman Numeral Write a Python program to convert an integer to a roman numeral. Try using this dict
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
11.13 LAB: Integer to Roman Numeral Write a Python program to convert an integer to a roman numeral. Try using this dict
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