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}
#1
Question 
[Help] Convert integer to Roman numerals? {Screenshot attached}

Hi,

Please see attached screenshot for the current exercise that I'm trying to execute?

[Image: 060818_zps7cdg6nrb.png]

Tbh, I am also unsure with my code. I gathered the idea from here (https://stackoverflow.com/questions/2877...n-numerals)

===================================================================
Here's my currentcode:
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'), (500, 'D'), (100, 'C'), (50, 'L'), (10, 'X'), (5, 'V'), (1, 'I')]
num = int(input("Enter any number between 1 and 3000: "))

def num2roman(num):

    while num > 0:
        for key, val in num_map:
            while num >= 1:
                print(num_map.values())
num2roman(num)
===================================================================
Error:
Error:
Traceback (most recent call last): File "soc-wk1day4h-cert-vanessa-dunford.py", line 25, in <module> num2roman(num) File "soc-wk1day4h-cert-vanessa-dunford.py", line 24, in num2roman print(num_map.values()) AttributeError: 'list' object has no attribute 'values'
===================================================================

Any advice is much appreciated! :)

Thank you in advance!
Blockchain Visionary & Aspiring Encipher/Software Developer
me = {'Python Learner' : 'Beginner\'s Level'}
http://bit.ly/JoinMeOnYouTube
Reply


Messages In This Thread
[Help] Convert integer to Roman numerals? {Screenshot attached} - by vanicci - Aug-06-2018, 12:27 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