Program To Calculate LCM Of Two Numbers | Python Tutorials

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ก.ค. 2020
  • In this Python Programming video tutorial you will learn to write program to calculate LCM of two numbers in detail.
    In arithmetic and number theory, the least common multiple, lowest common multiple, or smallest common multiple of two integers a and b, usually denoted by lcm, is the smallest positive integer that is divisible by both a and b.
    GCD Program
    • Python Tutorials - Pro...
    #LCM #PythonPrograms
    For more free tutorials on computer programming
    / amulsacademy
    AmulsAcademy

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

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

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

  • @ashmitsrivastava5186
    @ashmitsrivastava5186 3 ปีที่แล้ว +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)

  • @jahnavi.m5728
    @jahnavi.m5728 ปีที่แล้ว +3

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

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

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

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

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

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

    amazing explaination, thank you so much!

  • @rrrrr296
    @rrrrr296 2 ปีที่แล้ว +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

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

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

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

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

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

    Excellent explanation.

  • @surajkumar-un8rn
    @surajkumar-un8rn ปีที่แล้ว

    It is very very helpful for me.

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

    Ur teaching style is awesome mam.

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

    That was beautiful!

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

    Ur teaching style is awesome mam

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

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

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

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

  • @r.saiteja_raj386
    @r.saiteja_raj386 ปีที่แล้ว

    Thank you so much😇🤗

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

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

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

    thanks, Amulya!

  • @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

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

    Clear explanation mam

  • @yourvibe2844
    @yourvibe2844 3 ปีที่แล้ว +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 ✌🏻💯

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

    Great explanation 😃

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

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

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

    Thank you so much !!!!

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

    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

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

    THANK YOU.

  • @Krishnaveni-rf6pp
    @Krishnaveni-rf6pp 2 ปีที่แล้ว

    Super..

  • @AbhishekKumar-jt6gn
    @AbhishekKumar-jt6gn 3 ปีที่แล้ว +1

    superbb expalntion mam

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

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

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

    Thank you

  • @Subbu-or2ep
    @Subbu-or2ep ปีที่แล้ว

    Super mam🥰😍

  • @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 😅

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

    Super

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

    Vara level

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

    nice explanation

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

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

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

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

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

    your voice is super

  • @gayathridevip4632
    @gayathridevip4632 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 😊

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

    Amazing Explanation 🤗🤗

  • @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

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

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

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

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

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

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

  • @priyanshkhare5997
    @priyanshkhare5997 3 ปีที่แล้ว +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)

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

    First viewer 😀😀😎

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

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

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

    Voice kii flat nenu🤭🤭😍

  • @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

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

    Plz teach pandas

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

    please upload telugu videos madam

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

    Madam pls teach pandas

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

    the accent is hard to understand but explaination is great

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

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

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

    Any New python program

  • @KumaranKM
    @KumaranKM 2 ปีที่แล้ว +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

  • @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.

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

    Super