LCM to n numbers # LCM of n numbers n = int(input("Enter value of n : ")) li = [] print("Enter the numbers : ") for i in range(n): li.append(int(input())) def LCM(li): max = None for i in range(n): if max is None or max < li[i]: max = li[i] while True: for i in range(n): if(max % li[i] == 0): if( i == n-1): return max else: continue else: break max = max+1 LCM = LCM(li) print(f"LCM of {li} is {LCM}") Thanks Harry bhai you teach it so well that now i can easily find the lcm of n numbers
@sunilpal53894 жыл бұрын
One of the best coding teacher of this era!
@aditgaur15854 жыл бұрын
I think we can simplify our code by :- a = int(input('Enter the First number: ')) b = int(input('Enter the second number: ')) maxNum = max(a, b) while maxNum % a != 0 or maxNum % b != 0: maxNum += 1 print(f"The lcm is {maxNum}")
Harry Praji. Bas isika intazaar tha. Wo bhi Apne puri Kar Di. Thanks Praji . Aise hi maths and CP me video. Banayiye. Apka channel best hai. Aur aap to ho hi best. Aur all rounder. Superb explanation.
@RinkuDevi-mu6uz3 жыл бұрын
Sir , using this code I've found out both HCF and LCM of two numbers (I've not used math module) : def hcf(a,b): if a < b: c = a + 1 else: c = b + 1 for i in range(2,c): if ((a%i == 0) and (b%i == 0)): hcf = i return hcf a = int(input('Enter 1st number : ')) b = int(input('Enter 2nd number : ')) print() print('The HCF of these two numbers is :' , hcf(a,b)) d = (a*b)/hcf(a,b) print('The LCM of these two numbers is :' , int(d)) Hope you like it .
@durgaprasadkanda16763 жыл бұрын
For 3,5 what will hcf function return? It should be 1.
@ishansrivastava6744 жыл бұрын
hello sir i am currently watching your python full playlist and I am on the 36th video of that playlist and I just wanted to say thank you sir for creating such good videos
@sachini1168 Жыл бұрын
p=int(input("enter num1:")) j=int(input("enter num2:")) if(p>j): for k in range(1,p+1): if(p%k==0)and(j%k==0): l=k else: for o in range(1,j+1): if(p%o==0)and(j%o==0): l=o print("LCM of the following numbers is",(int((p*j)/l))) Simpler.
@sunilsah49934 жыл бұрын
a = int(input(" Enter first number ")) b = int(input(" Enter second number/n") maxNum = max( a, b ) while( True ): If( maxNum%a==0 and maxNum%b==0): Break maxNum = maxNum + 1 Print(f"The LCM of {a} and {b} is {maxNum}")
@RaviRanjan-yi5rq2 жыл бұрын
maxnum=maxnum+1 why
@Shauryaaaaaaaa4 жыл бұрын
Java = System.out.println("Harry is the best teacher"); JavaScript = Console.log("Harry is the best teacher"); Python = print ("Harry is the best teacher") .... .... .... You take as many languages but the output will be same that Harry is the best teacher
@GeekyShubhamSharma4 жыл бұрын
Jab string hi same hogi to value bhi same aaegi na😂
@mohit29424 жыл бұрын
@@GeekyShubhamSharma 🤣🤣🤣🤣🤣
@Shauryaaaaaaaa4 жыл бұрын
@@GeekyShubhamSharma are yaar Maine to baas Harry Bhai ke honour me likha tha 😁😁
@vimalkumarchaudhary19134 жыл бұрын
Pura pasand aaya hai nd best incredible teach
@focusonmyaim89808 ай бұрын
a= int(input(“enter a no”) ) b=int(input (“enter second no”)) i=1 while ((a*i)%b !=0): i+=1 LCM= a*i; print(“LCM of” , a “and”, b , “is” , LCM)
@adityahansa82304 жыл бұрын
Congratulations sir on 6 lakh subscribers
@akshayshinde24034 жыл бұрын
i have watched your machine learning playlist and it helped me a lot. Thank you.
@vigneshnu35114 жыл бұрын
Harry bhai kyo na aap programming ke liye maths be sikhane🤩🔥
@tasin4874 жыл бұрын
Thanks a lot Harry vai. It helped me a lot.
@rudrashiva4 жыл бұрын
Programming is the best way to increase your thinking capabilities. Let's build a strong Bharat coding force.
@rajnishpal24604 жыл бұрын
One of the simpliest explanations by harry bhai
@introvertgamer68503 жыл бұрын
hi i got this question in an interview i used same method but for large input time limit get exceeded is there any optimal way to solve it
@ganeshjaggineni4097Ай бұрын
NICE SUPER EXCELLENT MOTIVATED
@MananGandhi4 жыл бұрын
East or West, Harry Bhai is the best
@santoshgandhi62164 жыл бұрын
sir, please make hangman game
@santoshgandhi62164 жыл бұрын
sir please make hangman game with python please.
@akusarma6864 жыл бұрын
Excellent video
@Uranus6634 жыл бұрын
Harry bhai , I wish aapke 1 million ho jaye
@raghavsihag4 жыл бұрын
Bhai Ruby and shwift par banao series🤗
@hemrajyadav34294 жыл бұрын
Harry please make full video with explaining all things on topic “ how to setup python in Microsoft visual studio code” because i am unable to do this and i really want to learn coding with you harry bro
@thatcoolkid3704 жыл бұрын
He had already made a video on it
@yash7704 жыл бұрын
Harry sir plz make a playlist for REACT .Sir u are doing amazing work .
@Adarsh-ox3dt4 жыл бұрын
Thank you so much sir, really you are great😊
@Lila123864 жыл бұрын
Nice
@om24554 жыл бұрын
Harry you are good
@vihaanshah54804 жыл бұрын
Ethical hacking ka bhi tutorial banao agar appko aata hei.
@waibhavraj45884 жыл бұрын
Sir codeing karne ke liye best 💻laptop kaun sa hai
@Ali-cw3kn3 жыл бұрын
Hp yai Apple
@sparkhivemarketing4 жыл бұрын
I always like your videos
@jitendradashora8956 Жыл бұрын
def is_smaller(num1, num2): if num1 < num2: return num1 else: return num2 def is_greater(num1, num2): if num1 > num2: return num1 else: return num2 def hcf(a, b): divisor = is_smaller(a, b) dividend = is_greater(a, b) while True: remainder = dividend % divisor dividend = divisor if remainder == 0: return divisor else: divisor = remainder def lcm(a, b): return (a * b) // hcf(a, b) while True: print(lcm(int(input("Enter your first number:- ")), int(input("Enter your second number:- "))))
@sudarshanmhaisdhune10393 жыл бұрын
Good one!
@desihiphop49983 жыл бұрын
Great video
@MarcosGamingMLBB4 жыл бұрын
Harry vai ap carry guide se related video live korte to achha hota ...and machine learning k related thore or video hote to achha hota
@nilanshpathakk7602 жыл бұрын
thanks bro!
@monikavarshney50294 жыл бұрын
Hi Harry Your videos are awesome Just tell which software are you using to explain? Pls tell🙏🙏🙏👍👍👍
@monikavarshney50294 жыл бұрын
I know this comment is very low. But still pls respond
@vaibhav38524 жыл бұрын
If u r talking about java than the software is intelij but if u r talking about anything else then pls reply to comment and I will tell u
@official_freefire3500 Жыл бұрын
Vs code software h ye
@krissrka43754 жыл бұрын
Thank you sir..Thank u for making Python an easy programme that I can understand..
@siddiqajamadar22834 жыл бұрын
Please Harry bhaei reply please flutter or dart pay vedio bna do Hindi k sare vedios KZbin k samj nhi ate buss Aap k vedios ascche say smaj ate heai to please 🙏🙏🙏🙏🙏🙏🙏
@ManishSharma-fi2vr4 жыл бұрын
❤Love you bhai
@RohanDasRD4 жыл бұрын
💖 Awesome bhai 😊
@dejavu56164 жыл бұрын
1 viewer sir following ur python playlist at 51 video
@pennywise60583 жыл бұрын
Very useful
@The_WarMachine3 жыл бұрын
Nice 👍
@AshishTiwari-zj7yq4 жыл бұрын
MaxNum=MaxNum+MaxNum
@codewithsheri4 жыл бұрын
I am working on Android development should I choose flutter or React-Native because these are cross plateform language to develop both iOS and Android apps.
@code_mode4 жыл бұрын
very nice hay
@PremBardhan4 жыл бұрын
Bhai kya baat Love you
@codewithsheri4 жыл бұрын
Love from Pakistan I am your fan
@IjazAhmad-wv9qx4 ай бұрын
Amazing
@blacksssharkvlogs45534 жыл бұрын
bhaiya mai bhi programming ke line pe jaunnga .
@itrohitprajapati21144 жыл бұрын
Sir aap week students ke 'god' hai 🙏🙏🙏🙏🙏🙏🙏
@apoorvagupta84134 жыл бұрын
Please harry bhai Cv2 python tutorial
@AdarshSingh-cb5yf4 жыл бұрын
Sir ji please ds and Algo ... Daily 🙏🙏
@chaitanyabansal2922 жыл бұрын
should not we write maxnum= maxnum+ max(a,b). Since LCM will always increase in the multiples.
@PranavBhattad4 жыл бұрын
Harry Bhai do kivy tutorial please pls listen to your old subs, you are not listening mine from when you have got new subs...
@Rahul_Singh_Human4 жыл бұрын
django rest API video harry bhai
@desikalakar37724 жыл бұрын
Harry bhai aap google ki interview kyu nahi dete?
@harsh_miglani994 жыл бұрын
Sir i have a question that can i create web application with html,js and css
@rajputjay98564 жыл бұрын
You will also need REACT AND NODE too
@mohitgupta26994 жыл бұрын
Yes I have make with pure html , css , js and no other libary or framework used
@harsh_miglani994 жыл бұрын
@@mohitgupta2699 thnks bro
@rajputjay98564 жыл бұрын
@@mohitgupta2699 learn some frame works too... like DJANGO AND FLASK also
@mohitgupta26994 жыл бұрын
@@rajputjay9856 I am new to python
@shivanshutyagi834 жыл бұрын
Harry bhai 👋👋
@sindhavabhishek21604 жыл бұрын
Please tutorial on Oracle
@evilytlive Жыл бұрын
Python is too hard for me 😢😢😢😢😢
@XAAbhayDarade4 жыл бұрын
Harry bhai 3d game ki series banao na
@ruchitashah63174 жыл бұрын
Plz make a jarvis because my brother was telling that u can not make jrlarvis by using java
@mafiaop92514 жыл бұрын
Sir, please make video on artificial intelligence AI
@g4j3ndr44 жыл бұрын
Bhaiya class 10th se aadhe aadhe ghante me kya ham programming sikh sakte hai ??? Agar ha to hame start kya chiz se karna chahiye jo next 2-3 years me beneficial ho.....please like and comment !!!
@Shauryaaaaaaaa4 жыл бұрын
I think you should start from c++
@g4j3ndr44 жыл бұрын
@@Shauryaaaaaaaa please tell liitle bit some plan or flow chart sow that o could learn one after another
@laxmikanth80763 жыл бұрын
sir how to get out while loop without using break . for this to happen what condition should we give to while loop for the same program
@prashantthakur1134 жыл бұрын
Sir apney toh "python for absolute beginner" waley playlist mai toh Python key liye hammey pycharm recommend kiya tha..Toh ye (v.s code) mey kyu kar rahey Ho?
@rajputjay98564 жыл бұрын
You can use VSCODE THATS BETTER .... Pycharm is complicated a little bit with libraries ... So use VSCODE that's the best
@prashantthakur1134 жыл бұрын
@@rajputjay9856 Okay brother
@mohitgupta26994 жыл бұрын
I use submile text 3 , it is a light weight editor and easy to install
@prashantthakur1134 жыл бұрын
@@mohitgupta2699 Me too
@shivamchaudhary27142 жыл бұрын
Sir more than 2 numbers ka LCM nikalne ke lia kya kare Please bata do 🙏🙏
@crazyduniya1284 жыл бұрын
Harry sir java exercise solution kab aaega or aapne java ki videos ke notes bhi nahi diya please dijiye 😁😭🙏
@Anujkumar-wt1qs4 жыл бұрын
Bro please make DS videos fast
@jmpiyush56764 жыл бұрын
Harry bhai pz start node.js tutorial for android backend
@meh00894 жыл бұрын
Please make app development using react native and mongodb
@ujjwalverma64994 жыл бұрын
Search array ka koi program kr do harry brother
@factlaunda68724 жыл бұрын
Bhai ICSE Board Blue J Java pe video banao please 🙂
@pratik60894 жыл бұрын
Why max incremented by 1???
@nitinverma13594 жыл бұрын
bhai ye bta do ki tensorflow install kese krna hai Install krne pe error aa rha hai (pip install tensorflow ) se bhi error aa rha
@MohitKumar-dk2tt4 жыл бұрын
Machine learning pa aur videos kab aaye gi
@AkashSharma-mv2yx4 жыл бұрын
Bhai m ne ek software banaya h aap ke video dekh ker or m us ko play store per upload ker ru ga per kya m ker m update dal pau ga kya
@ameygujre76742 жыл бұрын
instead of incrementing 1 in every iteration, why don't we increment the maxNum as it's table. since it is pointless to check every single number with the increment of 1. We can simply iterate the table of max num till it is divisible by the least number..
@ScholarStream_254 жыл бұрын
Bro check that calculator of cbse students asap🙌
@neontuts56374 жыл бұрын
Harry bahi HCF aur GCM same hai kya?
@arnavjha73753 жыл бұрын
HCF aur GCD same hota hai Agar GCM chiye to dono number ko multiply kar do
@java23084 жыл бұрын
Can you make a video on how to find LCM of two numbers is JAVA
@thelocaldev4 жыл бұрын
Sir I think it is not working fine its not able to calculate the LCM of 3 and 5 , its giving a result of 5 where the original result must be 15
@DreamPixelStoryOfiicial4 ай бұрын
sir, use for loop video give me
@shantanulamba35994 жыл бұрын
Unity tutorial
@urm1n3 жыл бұрын
a = int(input("Enter Fist Number ")) b = int(input("Enter Second Number ")) maxNum = max(a, b) c = maxNum while(True): if (maxNum%a == 0 and maxNum%b ==0): break maxNum = maxNum + c print(f"The LCM of {a} and {b} is {maxNum}")
@PreetRaj2352 жыл бұрын
What is f here
@urm1n2 жыл бұрын
@@PreetRaj235 it's python code (f string)
@Opinionmatrix14 жыл бұрын
Sir plz reply me... Maine IT branch liya hai mera abhi first year mai admission kua hai.... Kaise padhu sir ki achha placement aur achhi knowledge le saku....🙏 plz reply sir aaj pehli bar apka channel dekha hu aur explore bhi kar rha hu.... Sir mere college ka naam- UCER Allahabad hai
@jeenu1234 жыл бұрын
Please make unreal engine tutorials
@rsatishkumar16822 жыл бұрын
Hi sir Can anyone explain maxNum=maxNum+1
@AshutoshKumar-ij5hw4 жыл бұрын
Python code me while ke ander true likhne ke baad name true is not define esa error q aa ra h
@aayushgupta20484 жыл бұрын
❤ please
@sumansingla96444 жыл бұрын
Sir basic tutorial session ki series m comment kiya h mne please ta do
@vaibhav38524 жыл бұрын
bhai mujhe isiki talash thi
@rudrapatel22343 жыл бұрын
I found mistek in programme that we can't find LCM of numbers like 3,7,11,13,17,19,29,23
@danishmakrani89913 жыл бұрын
Sir 45 aur 60 ka lcm galat a raha hai yeh program se