Program To Calculate LCM Of Two Numbers | Python Tutorials

Поделиться
HTML-код
  • Опубликовано: 16 дек 2024

Комментарии • 91

  • @alokik
    @alokik 3 года назад +38

    Respected mam, you don't know that how much you are helping to the students like me.ThankYou mam.

  • @ashmitsrivastava5186
    @ashmitsrivastava5186 4 года назад +10

    I did it this way only a little change is there i hope you like it:
    n1 = int(input('Enter first number: '))
    n2 = int(input('Enter second number: '))
    a = 1
    if n1>n2:
    l = n1
    else:
    l = n2
    while True:
    if n1>0:
    z = n1*a
    a+=1
    if z%n2 == 0:
    print(z, ' is the LCM.')
    break

    else:
    print(0)

  • @moviemania1021
    @moviemania1021 3 года назад +4

    Another way to solve this problem :)
    Btw your explanation was pretty good :)
    THE CODE:
    def lcm(n1, n2):
    value = max(n1, n2)
    n = 1
    while True:
    ans = value * n
    if ans % n1 == 0 and ans % n2 == 0:
    print("The lcm of the program is ", ans, ".")
    break
    n += 1
    n1 = int(input())
    n2 = int(input())
    lcm(n1, n2)

    • @AmulsAcademy
      @AmulsAcademy  3 года назад +1

      Thank you :)

    • @karthicksk3392
      @karthicksk3392 3 года назад

      @@AmulsAcademy mam i do like your code but i got an error in local variable help me pkz

  • @rameenumer2212
    @rameenumer2212 2 года назад +3

    This is your first video I saw and like, subscribed Because I like the way you teach us
    superb
    Keep it up Sister😊
    👍

  • @jahnavi.m5728
    @jahnavi.m5728 2 года назад +3

    Thank you so much mam for making us easily to understand the logic 👏👏

  • @_ShivamGupta
    @_ShivamGupta Год назад

    mam please keep uploading videos like this it helped me a lot ♥

  • @dibyaranjanbarik7987
    @dibyaranjanbarik7987 4 года назад +1

    Ur teaching style is awesome mam.

  • @anuragjain3595
    @anuragjain3595 3 года назад

    Mam you are superb.Great respect from class 11 Tint Tots public school.

  • @bhubeshsr6281
    @bhubeshsr6281 4 года назад +2

    actually i like these lectures..
    my kind request you to create an telegram channel so we will get updates sa possible!!

  • @yourvibe2844
    @yourvibe2844 4 года назад +3

    ma'am please make python tutorials for tcs nqt coding section evryone is covering that topic using c, c++ no one's considering python, though python is the best language, i found this channel best for python ✌🏻💯

  • @priyanshkhare5997
    @priyanshkhare5997 4 года назад +5

    This is for the people in a time crunch :
    def Compute_LCM(n1,n2):
    if n1>n2:
    higher = n1
    else:
    higher = n2
    value = higher
    while True:
    if higher%n1==0 and higher%n2==0:
    print("LCM of", n1,"and",n2,"is",higher)
    break
    else:
    higher = higher+value
    n1=int(input("No.1 please:"))
    n2=int(input("No. 2 please:"))
    Compute_LCM(n1,n2)

  • @vabphogat6678
    @vabphogat6678 2 года назад +2

    amazing explaination, thank you so much!

  • @SumitSinghzz
    @SumitSinghzz 4 года назад +2

    Glad to see your current video please drop the video on Linkedlist singly or double linked list

  • @rrrrr296
    @rrrrr296 3 года назад +3

    this video is very helpful for us thank you so much mam :) and i request you to do a video on how to print pythogoras triplets in range of n numbers

  • @prabathkotti9380
    @prabathkotti9380 3 года назад +4

    I like the way of teaching....thank you!
    expecting more videos from u

  • @ruchigupta7166
    @ruchigupta7166 2 года назад +1

    Mam please make a video on the program to find the smallest of 10 numbers entered, a sum of the digits of the smallest number, if it is an integer

  • @ritviksourab889
    @ritviksourab889 2 года назад

    if you ever thought this was tough
    try this code....
    import math
    print(math.lcm(x,y))

  • @shaluradhu1102
    @shaluradhu1102 2 года назад

    Clear explanation mam

  • @surajkumar-un8rn
    @surajkumar-un8rn 2 года назад

    It is very very helpful for me.

  • @sanchaykumar3343
    @sanchaykumar3343 3 года назад +1

    thanks, Amulya!

  • @ganaroyall3589
    @ganaroyall3589 3 года назад

    love u mam .. keep going.......on pythonnnnn

  • @leelapavankumaruddanti7796
    @leelapavankumaruddanti7796 3 года назад +2

    Voice kii flat nenu🤭🤭😍

  • @kumarkailasanathan961
    @kumarkailasanathan961 3 года назад

    Excellent explanation.

  • @r.saiteja_raj386
    @r.saiteja_raj386 2 года назад

    Thank you so much😇🤗

  • @alokik
    @alokik 3 года назад +2

    Respected mam, my cognizant exam is scheduled after 15days and and I have also applied for TCS NQT. I want to crack both of the companies. Please guide me mam.. please 😅

  • @asafmohammed1045
    @asafmohammed1045 4 года назад +1

    Great explanation 😃

  • @hariprasath6274
    @hariprasath6274 3 месяца назад

    Perfectly Cooked

  • @BrendanMetcalfe
    @BrendanMetcalfe 4 года назад +1

    Hi Amul! Is it me or did your channel grow A LOT?? :) :)

  • @KumaranKM
    @KumaranKM 3 года назад +1

    a = 24
    b = 36
    ca = max(a, b)
    minn = min(a,b)
    count = 1
    while True:
    if (ca * count) % minn == 0:
    print(ca * count)
    break
    count += 1

  • @pythonenthusiast9292
    @pythonenthusiast9292 4 года назад +3

    can you please start series of binary tress , linkedlist, graphs etc and python implementation?

  • @gayathri-8-i6s
    @gayathri-8-i6s 3 года назад +1

    When I put else block straight to while loop, it is not providing output. But in your another video, you have given else block straight to while loop. Can u explain mam

    • @AmulsAcademy
      @AmulsAcademy  3 года назад

      You can use else block with loops but first you need to understand it’s working 😊
      Give me the program I will check 😊

  • @seaofplatitudes780
    @seaofplatitudes780 2 года назад

    That was beautiful!

  • @rajeshgoruva4036
    @rajeshgoruva4036 2 года назад

    your voice is super

  • @Leo-s4r9q
    @Leo-s4r9q 3 года назад

    factors of n2 will always get 0 as modulo when performing : higher%n2 == 0,,,,,,, so its better to exclude this condition.

  • @tubakhalid5222
    @tubakhalid5222 3 года назад +1

    Thank you so much !!!!

  • @Subbu-or2ep
    @Subbu-or2ep 2 года назад

    Super mam🥰😍

  • @AbhishekKumar-jt6gn
    @AbhishekKumar-jt6gn 4 года назад +1

    superbb expalntion mam

  • @sujalmilind258
    @sujalmilind258 4 года назад +1

    I have created a program which can calculate both lcm and HCF of 3 no.s in less than 30 lines

  • @stalinromi1134
    @stalinromi1134 4 года назад +1

    Thank you

  • @tecolote8566
    @tecolote8566 4 года назад +1

    THANK YOU.

  • @adinathkolhapure6697
    @adinathkolhapure6697 4 года назад +1

    First viewer 😀😀😎

  • @naveenmuchhandi2596
    @naveenmuchhandi2596 3 года назад

    nice explanation

  • @khyber8455
    @khyber8455 2 года назад

    the accent is hard to understand but explaination is great

  • @harishshelat4128
    @harishshelat4128 2 года назад

    Hello,
    I am new to Python programming. I am 71 years old and trying to learn Python for fun. I have one problem. I am trying to print pattern like "0 ,1, 2 , 3, 4 ,5
    6, 7, 8, 9, 0, 1" depending on input from user. For example if user enters number of row=3 and number of column=5. Pattern should print 0 to 5 in first row,6 to 9 and remaining 0 and 1 in second row and remaining numbers 2,3,4,5,6,7 in thrid row. How do i accomplish this? I watched your several tutorials but unable to work it out.
    Thank you,
    Harish

  • @jaiveera9894
    @jaiveera9894 4 года назад +2

    please upload telugu videos madam

  • @Krishnaveni-rf6pp
    @Krishnaveni-rf6pp 3 года назад

    Super..

  • @rakeshdonthi9091
    @rakeshdonthi9091 Год назад

    I did this like this
    x = 0
    while True:
    x += 1
    if x % 24 == 0 and x % 36 == 0:
    break
    print(x)

  • @geethikauppala1038
    @geethikauppala1038 12 дней назад

    Could you please draw a flowchart for same

  • @rahulummadisetty8012
    @rahulummadisetty8012 4 года назад +1

    Amazing Explanation 🤗🤗

  • @jessierider5845
    @jessierider5845 4 года назад

    Ma'am , please clarify my doubt.. Which version of python you're using? Python 2 or 3???🥺🥺

  • @shyamprakashm6325
    @shyamprakashm6325 4 года назад

    Why do you change amul's acadamy into amulya acadamy, ?

  • @kirankatakamsetty368
    @kirankatakamsetty368 2 года назад +1

    When you executed 24 and 36, the lcm is 72 and I got the same,
    But when I execute 36 and 24, the lcm is 36

    • @telugutechtuts8986
      @telugutechtuts8986 2 года назад +1

      You did a mistake in your code bro...
      I am getting correct answer 72 for both cases

  • @sigarkantishivasharanappa49
    @sigarkantishivasharanappa49 3 года назад +1

    Super

  • @virupakshavegi4405
    @virupakshavegi4405 3 года назад

    Hi mam nice explanation but ur code is not working when one of the number is 0

  • @francy4863
    @francy4863 2 года назад

    Vara level

  • @kottakotaviswanadham5799
    @kottakotaviswanadham5799 4 года назад

    Plz teach pandas

  • @sivasundari9174
    @sivasundari9174 4 года назад

    Madam pls teach pandas

  • @balakrishnavaidyanathan8572
    @balakrishnavaidyanathan8572 2 года назад

    Any New python program

  • @DineshKumar-jt5tr
    @DineshKumar-jt5tr 3 года назад

    amulya ??did y like milk products??

  • @bryanhoangbach2255
    @bryanhoangbach2255 2 года назад

    There's a thing that can be improved: Please learn more English, because it's a bit hard to listen to what you meant or what you're saying.

  • @dibyaranjanbarik7987
    @dibyaranjanbarik7987 4 года назад +1

    Ur teaching style is awesome mam

  • @kanimozhisarathy8351
    @kanimozhisarathy8351 Год назад

    Super