Python Forum
[Help] Convert integer to Roman numerals? {Screenshot attached}
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Help] Convert integer to Roman numerals? {Screenshot attached}
#7
@volcano63 & @ichabod801 = Thank you very much for your input! :)

@Windspar, can I please ask you to look into my current code?

When user input's integer, there is no roman numeral coming up?

print("[System] Hi! Enter any number between 1 and 3000 so the program will show you the old-school Roman numeral. In other words, 4 should return 'IIII'. Ready?!")

num_map = [(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, 'I')]

result = int(input("Enter any number between 1 and 3000: "))
num = 0

def int_to_roman(num):
    result = []
    for (arabic, roman) in num_map:
        (factor, num) = divmod(num, arabic)
        result.append(roman * factor)
        if num == 0:
            break
    return "".join(result)

int_to_roman(num)
===================================================================
My Terminal's Screenshot:

[Image: 060818_zpsmx8wa1rw.png]
Blockchain Visionary & Aspiring Encipher/Software Developer
me = {'Python Learner' : 'Beginner\'s Level'}
http://bit.ly/JoinMeOnYouTube
Reply


Messages In This Thread
RE: [Help] Convert integer to Roman numerals? {Screenshot attached} - by vanicci - Aug-06-2018, 03:19 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How to convert 4 bytes to an integer ? GiggsB 11 7,648 Jan-20-2022, 03:37 AM
Last Post: GiggsB
  Help with implementation of the logic to convert roman numeral to integer jagasrik 2 2,419 Aug-14-2020, 07:31 PM
Last Post: deanhystad
  Converting number to roman numerals jagasrik 6 3,847 Aug-11-2020, 03:47 AM
Last Post: voidptr
  IEDriverServer screenshot ABVSVL 0 1,826 Jul-12-2020, 09:31 AM
Last Post: ABVSVL
  pyautogui.screenshot region is not working alexlu 6 6,800 Jun-04-2020, 10:46 AM
Last Post: alexlu
  What is the best way to search for a pixel in a screenshot? TheZadok42 1 2,800 May-15-2020, 12:37 PM
Last Post: scidam
  Spawning a new process that is not attached to python cman234 3 2,060 Apr-25-2020, 05:24 PM
Last Post: cman234
  Roman Numeral Ordered List? (first post) CopperyMarrow15 1 1,837 Nov-06-2019, 11:06 PM
Last Post: Larz60+
  My objective is to get the shape parameters of the particles in attached image chad221 0 1,897 Oct-26-2019, 10:27 AM
Last Post: chad221
  Want to take a Screenshot from a File in Linux dhiliptcs 2 2,664 Oct-21-2019, 01:22 PM
Last Post: dhiliptcs

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020