Python Program To Convert Given Integer To Roman Numerals | Programs

แชร์
ฝัง
  • เผยแพร่เมื่อ 11 ธ.ค. 2024

ความคิดเห็น •

  • @nandalala7915
    @nandalala7915 3 ปีที่แล้ว +7

    Mam you did one big mistake in program🙆🏼‍♂️
    100=C but you kept D
    90= XC but you kept XD

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว +3

      I will check that :)
      Thanks for informing :)

    • @nandalala7915
      @nandalala7915 3 ปีที่แล้ว +1

      @@AmulsAcademy did u checked mam🤔

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว +1

      Sorry I forgot , I will check it soon and leave message in the video :)

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว +3

      Yes I did mistake in the program (in symbol list).
      Thank you for informing :)

    • @nandalala7915
      @nandalala7915 3 ปีที่แล้ว +2

      @@AmulsAcademy write that in description box or in title not everyone will read comments.

  • @greeshmashetty1724
    @greeshmashetty1724 3 ปีที่แล้ว +3

    Amulya - you should open a link to support you. Whoever can/wants to donate and likes your content might donate/support you. You are doing a amazing job as a teacher. Thank you very much.

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      Thank you so much 😊
      I will think about it ❤️

  • @acemerriott5684
    @acemerriott5684 3 ปีที่แล้ว +2

    this vid got passed along my entire computer science class - thank you its a really good tutorial

  • @mohamedcherni
    @mohamedcherni 3 ปีที่แล้ว +2

    what makes your tutorials more awesome is that you indirectly teach us algorithm in addition with progrmming
    Thank you mam

  • @mfkngod2535
    @mfkngod2535 3 ปีที่แล้ว +1

    A girl commented on one of your video to make this program...... You accepted the challenge and made the program.... So awesome!

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว +1

      Thank you :)

    • @mfkngod2535
      @mfkngod2535 3 ปีที่แล้ว

      @@AmulsAcademy glad to be you student! 😊

  • @vinod2775
    @vinod2775 ปีที่แล้ว +1

    your teaching is good mam but i have easy soluton .....(bellow)
    def convertRoman(a):
    ROMANS = (('V', 5000),
    ('MV', 4000),
    ('M', 1000),
    ('CM', 900),
    ('D', 500),
    ('CD', 400),
    ('C', 100),
    ('XC', 90),
    ('L', 50),
    ('XL', 40),
    ('X', 10),
    ('IX', 9),
    ('V', 5),
    ('IV', 4),
    ('I', 1))

    res=""
    for roman,value in ROMANS:
    while a>=value:
    res=res+roman
    a=a-value
    return res

    a=int(input('enter a digit to convert it into roman :'))
    print(convertRoman(a))
    thank you

  • @bibekanandasahoo3497
    @bibekanandasahoo3497 2 ปีที่แล้ว

    One day I also want to be a coding pro like you mam, you are my inspiration.

    • @dfhg315
      @dfhg315 2 ปีที่แล้ว

      solve the leetcode problem daily , this was medium level question in leetcode.

  • @high-fliers4726
    @high-fliers4726 2 ปีที่แล้ว

    Don't know why u got less thumbs up while u r the only one who define things with the whole working scenarios.
    U r not good but great tutor👍

  • @krishnachaithanya-z2f
    @krishnachaithanya-z2f ปีที่แล้ว

    No words for ur explanation.....💗

  • @bencielcabutin6815
    @bencielcabutin6815 3 ปีที่แล้ว +2

    Great tutorial. Well explained everything that happening in the function.

  • @balakrishnavaidyanathan8572
    @balakrishnavaidyanathan8572 3 ปีที่แล้ว +1

    This python programming is very intersting I tried at house it is working thanks

  • @ankitarya792
    @ankitarya792 3 ปีที่แล้ว +1

    wow Challenge fulfilled 🤩🤩

  • @jammulavarun3198
    @jammulavarun3198 3 ปีที่แล้ว +2

    Instead of 2 lists can't we go for dictionary for storing those values??

  • @ramjayd
    @ramjayd ปีที่แล้ว

    Super explanation sister. Thank you 😊

  • @veereshhiremath6562
    @veereshhiremath6562 3 ปีที่แล้ว +1

    Excellent teaching superb...

  • @siratoonnahar833
    @siratoonnahar833 11 หลายเดือนก่อน

    Awesome video.. Thank you mam

  • @Remiisola
    @Remiisola ปีที่แล้ว

    Thanks for the clear explanation.

  • @Brianvanvlymen
    @Brianvanvlymen 2 ปีที่แล้ว

    extremally love this one tutorial! thank you

  • @nitaprasad3855
    @nitaprasad3855 3 ปีที่แล้ว +1

    Very nice explanation

  • @murtykunapuli8084
    @murtykunapuli8084 3 ปีที่แล้ว +1

    Mam your presentation is very nice I have one doubt why D in roman list is repeated twice

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      May be I did a mistake there 😊🙈

  • @darshilkumar7816
    @darshilkumar7816 3 ปีที่แล้ว +1

    thanks ... I will surely try this

  • @madhumitharajkumar4215
    @madhumitharajkumar4215 ปีที่แล้ว

    can we write this in range of 100

  • @pythonenthusiast9292
    @pythonenthusiast9292 3 ปีที่แล้ว +1

    100k soon!! any suprises for the fans and subscribers?! jus kiddin just keep uploading videos !!

  • @amirhosseinzadeh1418
    @amirhosseinzadeh1418 2 ปีที่แล้ว

    if I want to convert larger number than 3999 what i can to do?
    for exampel tile 3999999 pleas help me i cant program it.

  • @keitayongz1578
    @keitayongz1578 3 ปีที่แล้ว

    i try this code but why my output was
    how to solve this?

  • @Param3021
    @Param3021 3 ปีที่แล้ว +1

    Congratulations for 100k 🎉

  • @greeshmashetty1724
    @greeshmashetty1724 3 ปีที่แล้ว +1

    Also please disable the yellow highlighting the text in your future videos. Very disturbing when we want to study something.

  • @vishalnimmu2080
    @vishalnimmu2080 3 ปีที่แล้ว +1

    Well Explained

  • @ashwanisingh9612
    @ashwanisingh9612 3 ปีที่แล้ว +2

    Thank you mame.

  • @lumior7458
    @lumior7458 ปีที่แล้ว

    good lecture , yum.

  • @balakrishnavaidyanathan8572
    @balakrishnavaidyanathan8572 3 ปีที่แล้ว +1

    Do you know any program for converting roman number to integer

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      I think you can do that by using this program [ by dong modification to this program ].

    • @balakrishnavaidyanathan8572
      @balakrishnavaidyanathan8572 3 ปีที่แล้ว +1

      Have you done any New programs of python

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      No :)

    • @balakrishnavaidyanathan8572
      @balakrishnavaidyanathan8572 3 ปีที่แล้ว

      Keep sending some more New programs it will be helpful.i really enjoy your videos

  • @dfhg315
    @dfhg315 2 ปีที่แล้ว

    for beginner it is hard to build this type of logic. this was medium level question

  • @HanishreddySudhini
    @HanishreddySudhini 3 หลายเดือนก่อน

    error :return outside function .can u explain mam.

  • @godx3558
    @godx3558 3 ปีที่แล้ว +1

    Write a python program to display each word of a string and print its length.
    Mam can u please give me the answer

  • @Learningwithbenefits
    @Learningwithbenefits 3 ปีที่แล้ว +1

    mam kindly html5 ka complete video banalo thanks

  • @crewmate3031
    @crewmate3031 3 ปีที่แล้ว +1

    Close to 100k ❤️

  • @mahshadbozorgzad2654
    @mahshadbozorgzad2654 3 ปีที่แล้ว +1

    I wrote exact code , but I get this error value = [1000,900,500,400,100,90,50,40,10,9,5,4,1]
    ^
    IndentationError: unindent does not match any outer indentation level
    pls help me to solve my issue, could you pls share the code ?

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      You used an extra space or less space somewhere in the program.
      😊

  • @AshishHallur
    @AshishHallur 2 ปีที่แล้ว

    '>' not supported between instances of 'str' and 'int'

  • @AnilKumar-do6nj
    @AnilKumar-do6nj 3 ปีที่แล้ว +1

    Please explain dask package

  • @Tech_Brigadier
    @Tech_Brigadier 2 ปีที่แล้ว

    mam I have made my own program nothing copied I want to show

  • @saimirshad6184
    @saimirshad6184 3 ปีที่แล้ว +2

    This was epic

  • @nandalala7915
    @nandalala7915 3 ปีที่แล้ว

    Got this challenge in codewars.

  • @veereshhiremath6562
    @veereshhiremath6562 3 ปีที่แล้ว +1

    Thank you

  • @SniperGamingOG
    @SniperGamingOG หลายเดือนก่อน

    M❌yum✔️

  • @afnankhan1278
    @afnankhan1278 2 ปีที่แล้ว

    L = yel
    M = yEm 😂cute

  • @ramsudhan8094
    @ramsudhan8094 3 ปีที่แล้ว +1

    Its hardly 20-25 lines.
    I made the same program but different logic but it took more than 50 lines😱

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว +1

      We can write these programs in different ways :)

  • @madhursikarwar8531
    @madhursikarwar8531 3 ปีที่แล้ว +2

    Me finding a comment you have not replied😂😂

    • @AmulsAcademy
      @AmulsAcademy  3 ปีที่แล้ว

      I try to reply for most of them :)

  • @selvanm2872
    @selvanm2872 3 ปีที่แล้ว +1

    👍

  • @renukanamburu1959
    @renukanamburu1959 3 ปีที่แล้ว +1

    Very nice explanation