Python converts Arabic numerals to Roman numerals, and python Arabic numerals

Source: Internet
Author: User

Python converts Arabic numerals to Roman numerals, and python Arabic numerals

This article describes how Python converts Arabic numerals to Roman numerals. Share it with you for your reference. The specific implementation method is as follows:

def numToRomanNum(Num): """digital will be converted into Roman numerals,Ex: numToRomanNum(3999)"""   if Num < 1 or Num > 3999:     print 'The Num must in 1-3999'   else:     NumDic = {       '1':('I','IV','V','IX'),       '2':('X','XL','L','XC'),       '3':('C','CD','D','CM'),       '4':('M')       }     items = sorted(NumDic.items())     retstr = ''     for item in items:       str = ''       (Num,modNum) = divmod(Num,10)       if modNum != 0:         if item[0] != '4':           if modNum <= 3:             while modNum > 0:               str = str.join(['',item[1][0]])               modNum -= 1           elif modNum < 5:             str = item[1][1]           elif modNum == 5:             str = item[1][2]           elif modNum < 9:             str = item[1][2]             while modNum > 5:               str = str.join(['',item[1][0]])               modNum -= 1           else:             str = item[1][3]         else:           while modNum > 0:             str = str.join(['',item[1][0]])             modNum -= 1         retstr = str.join(['',retstr])     return retstr

I hope this article will help you with Python programming.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.