Python Armstrong Number Program - In Hindi

  Рет қаралды 47,633

codeitup

codeitup

Күн бұрын

Пікірлер: 113
@nirojsubedi
@nirojsubedi 4 жыл бұрын
you are absolutely amazing yarr.. i know you have done lot of practice to teach and hope you will be one of the great programmer in coming days ....i respect you cause you still make video to share information even you have less viewers....thanks
@codeitup
@codeitup 4 жыл бұрын
Thanks a ton🙂
@nirojsubedi
@nirojsubedi 4 жыл бұрын
@@codeitup lots of love from Nepal.......
@codeitup
@codeitup 4 жыл бұрын
@@nirojsubedi Thanks you so much!
@leon.s.kennedy5198
@leon.s.kennedy5198 2 жыл бұрын
He is nice teacher.
@arpitapandey8645
@arpitapandey8645 Жыл бұрын
Thank you sir❤
@codeitup
@codeitup Жыл бұрын
Most welcome!
@vineetsingh7547
@vineetsingh7547 Жыл бұрын
Thanks 😊 Sir 👍🙏
@codeitup
@codeitup Жыл бұрын
Most welcome!
@tanveerbibi6474
@tanveerbibi6474 Жыл бұрын
Very nice video hai❤
@codeitup
@codeitup Жыл бұрын
Thank you so much !
@oxygen3654
@oxygen3654 Жыл бұрын
Pranam Gurudev, Aapki sabhi khwaishein poori ho. Aap mahan hai!!
@codeitup
@codeitup Жыл бұрын
🙂🙏
@rohitgarg4446
@rohitgarg4446 Жыл бұрын
I did like this !! n = int(input("Enter your numbers of even No. = ")) i = n count = 0 while (i>0): i = i // 10 count = count + 1 i = n sum = 0 while (i > 0): sum = sum + (i % 10)**count i = i // 10 if(sum==n): print("Armstrong Number") else: print("Not Armstrong Number")
@mansirao5768
@mansirao5768 5 ай бұрын
easier ig
@mansirao5768
@mansirao5768 5 ай бұрын
what's the use of count ? when your not printing
@Tripti_Foundation
@Tripti_Foundation 7 ай бұрын
actually your explanation with dry run is so much adorable.
@codeitup
@codeitup 7 ай бұрын
Glad you think so!
@eduvista9644
@eduvista9644 Жыл бұрын
sir aapka padhane ka tareeka jabardast hai, maza aagya
@codeitup
@codeitup Жыл бұрын
🙂
@rounakverma8115
@rounakverma8115 10 ай бұрын
Thanks sir
@codeitup
@codeitup 10 ай бұрын
Welcome Rounak!
@rosy9003
@rosy9003 Жыл бұрын
Ur teaching way is super awesome... U made this program easiest for me.... Thanks sir 🙏🏻
@codeitup
@codeitup Жыл бұрын
Glad to hear that!
@debarghyaadhikari5558
@debarghyaadhikari5558 3 жыл бұрын
NICE SIR
@codeitup
@codeitup 3 жыл бұрын
Thanks dear😊
@motasembillatanjid8483
@motasembillatanjid8483 3 жыл бұрын
Thanks you sir!! You are great
@codeitup
@codeitup 3 жыл бұрын
Thanks & most welcome dear😊
@SulemanTheTraveller
@SulemanTheTraveller 3 жыл бұрын
Sir ap ka style hi amazing hy. thumbs up. by the way armstrong number find krnay k liye mujay last video wala method easy lga hy
@codeitup
@codeitup 3 жыл бұрын
Thanks Malik!
@iitianvibes_1
@iitianvibes_1 2 жыл бұрын
mindblowing series
@codeitup
@codeitup 2 жыл бұрын
Thanks Ashish!
@opgaming-jh4hu
@opgaming-jh4hu 3 жыл бұрын
sir your teching style is best also explanation thank u sir u are the best teacher
@codeitup
@codeitup 3 жыл бұрын
Thanks & most welcome Hitesh!
@paristadebbarma6359
@paristadebbarma6359 2 жыл бұрын
I'm just starting loops and your video helps me a lot. thanks
@codeitup
@codeitup 2 жыл бұрын
Glad to help you😊
@shriyawayangankar393
@shriyawayangankar393 Жыл бұрын
n=int(input("Enter the number: ")) def arm(n): i=n count=0 while (i>0): digit=i%10 count+ =digit**3 i//=10 if n==count: print (n, "Armstrong") else: print(n, "Not armstrong") arm(n)
@AmanBaba-v3e
@AmanBaba-v3e Жыл бұрын
Bhout easy h
@Anitarawat03
@Anitarawat03 Жыл бұрын
Century comment🎉
@chandranathrumabhowmick8752
@chandranathrumabhowmick8752 Жыл бұрын
Please do a total video on threads your explanation is high that influenced me so much
@mansirao5768
@mansirao5768 5 ай бұрын
i'm not getting this program , it is lengthier so i would prefer the previous way. although thanks for the explanation sir..
@kanduladivya5804
@kanduladivya5804 4 жыл бұрын
very good explanation sir,thanku verymuch.
@codeitup
@codeitup 4 жыл бұрын
You're most welcome !
@Juhi1910
@Juhi1910 3 жыл бұрын
Thank you sir
@codeitup
@codeitup 3 жыл бұрын
Most welcome!
@aneelaamin2235
@aneelaamin2235 3 жыл бұрын
very good sir, this video is very helpful for me, thanks,
@codeitup
@codeitup 3 жыл бұрын
Glad to help you Aneela!
@praneetkumarjha215
@praneetkumarjha215 3 жыл бұрын
Perfect content perfect teacher perfect teaching style ... On the way to python
@codeitup
@codeitup 2 жыл бұрын
Thanks Praneet😊
@Tripti_Foundation
@Tripti_Foundation 7 ай бұрын
n = int(input('Enter a number:=')) order = len(str(n)) org = n sum = 0 while n>0: sum = sum + (n%10)**order n=n//10 if org == sum: print("Number is Armstrong") else: print("Number is not Armstrong") This is the alternative to fird Armstrong number. if set the range between 1 to 500 or more use for loop.
@fenrir834
@fenrir834 3 жыл бұрын
hands down this is the best channel to learn python for Hindi-speaking beginners.
@codeitup
@codeitup 3 жыл бұрын
So nice of you, God bless you!
@harshasri3711
@harshasri3711 2 жыл бұрын
Excellent teaching but please teach in English also.....
@manav.2907
@manav.2907 3 жыл бұрын
#Sir we can use this also n=int(input("enter the number:")) i=n sum=0 x=len(str(n)) while(n>0): sum=sum+(n%10)**x n=n//10 if i==sum: print("yes the number is an armstrong") else: print("no the number is not an armstrong")
@AksaMWani
@AksaMWani 2 жыл бұрын
Good one!!
@mayurlavangare9432
@mayurlavangare9432 2 жыл бұрын
nice one
@sanchitapadole3512
@sanchitapadole3512 2 жыл бұрын
Sir exercise bhi diya kro..
@SurajKumar-jw7jo
@SurajKumar-jw7jo 3 жыл бұрын
Sir isse previous question me aap ne is online board (digitally) samjaya tha . Aur oski programming thodi alag thi aur isme thodha alag he . So dono question me difference kya he .
@codeitup
@codeitup 3 жыл бұрын
This is for any number of digits. The previous was only for three digits number.
@dipendrasingh1586
@dipendrasingh1586 3 жыл бұрын
Sir,video banate rahna👍🏻👍🏻👍🏻
@fenrir834
@fenrir834 3 жыл бұрын
just a suggestion to do this differently. first make a loop to count the number of digits, let the no.' of digits be n then write a seperate loop to take the sum of the digits^n.
@youthoob3573
@youthoob3573 8 ай бұрын
its okay , everyone has their own method, calm down
@fenrir834
@fenrir834 8 ай бұрын
@@youthoob3573 Sure mate, i have been loosing my shit since two years as you can clearly tell from my comment two years ago, I am calm now since you asked me to
@4k45hxd9
@4k45hxd9 3 жыл бұрын
Sir iske phle wala mathod bhi sahi h na ?
@codeitup
@codeitup 3 жыл бұрын
Wo sirf 3 digit numbers ke lie tha, ye any number of digit ke lie hai.
@4k45hxd9
@4k45hxd9 3 жыл бұрын
@@codeitup okk sir thanks
@AHMAD-yd2ib
@AHMAD-yd2ib Жыл бұрын
I HAVE A HUNDRED TIMES SIMPLER VERSION OF CODE : 🔥 (Using just 2 while loops and a pair of if-else statements) n = int(input('enter a number: ')) z = n k = n rev = 0 count = 0 while k>0: count += 1 k = k//10 while n>0: rev = rev + (n%10)**count n = n//10 if rev == z: print('The number is Armstrong') else: print('The number is not Armstrong')
@Ansh_Rajpoot_
@Ansh_Rajpoot_ 4 жыл бұрын
sir , can we use this code >is it correct>>>>>>>>>>>>> a = int(input('ener a num')) i = a sum = 0 len = len(str(a)) while i>0: sum = sum + (i%10)** len i = i//10 if a==sum: print(' The num is armtrong') else : print('not armstrong') its working fine like yours.
@codeitup
@codeitup 4 жыл бұрын
If it is working fine then perfect Ansh. A single program may have different logic to solve.
@AmanBaba-v3e
@AmanBaba-v3e Жыл бұрын
Sir ye BCA valo ke according h na
@riyajoshi8229
@riyajoshi8229 3 жыл бұрын
Sir I use the same program with same logics in pycharm, but i am unable to get the desired answers though indentation and other things are good in place.
@ashoknandurka7204
@ashoknandurka7204 3 жыл бұрын
What's the difference between previous one??
@skybird7274
@skybird7274 2 жыл бұрын
i=int(input("enter the number")) o=i count=0 while (i>0): i=i//10 count+=1 i=o sum1=0 while (i>0): sum1=sum1+(i%10)**count i=i//10 if sum1==o: print("YES") else: print("NO")
@harshkumar-rh8kk
@harshkumar-rh8kk 2 жыл бұрын
bhai sahab agar ese coding sikhoge toh jo ata hoga vo bhi bhul jaynge ye itna complicated nahi hai jitna apne bana diya
@aryasharma5571
@aryasharma5571 3 жыл бұрын
sir isse phle bhi ek video hai armstrong ki....usme count variable ke bina karvaya hai apne. which one is more correct?🙂😃
@codeitup
@codeitup 3 жыл бұрын
Last video is for 3 digit only. This video is for any number of digit. SO, this program is better.
@aryasharma5571
@aryasharma5571 3 жыл бұрын
@@codeitup thanx sir❤️❤️..
@lovelyaggarwal9828
@lovelyaggarwal9828 4 жыл бұрын
Sir m programming 1st tym kr rhi hu..in formula ko learn krna padta h kya..?
@codeitup
@codeitup 4 жыл бұрын
Yes Lovely, kuch formula aapko yaad karne hoge.
@rameshchandsharma6015
@rameshchandsharma6015 4 жыл бұрын
Sir video banate rahie
@codeitup
@codeitup 4 жыл бұрын
Sure Ramesh !
@meow-rd6op
@meow-rd6op 4 жыл бұрын
💥💥
@codeitup
@codeitup 4 жыл бұрын
🙂
@MrKP-nm3qy
@MrKP-nm3qy 3 жыл бұрын
Sir amstrong wali ek or vdo h jisme ek particular cube k condition p h kya wo bhi shi h kya
@codeitup
@codeitup 3 жыл бұрын
Wo sirf 3 digit number ke lie hai...
@sunnyyadav4664
@sunnyyadav4664 4 жыл бұрын
sir regular expression pe series bnado please
@codeitup
@codeitup 4 жыл бұрын
Sure !
@abhinavkislay9442
@abhinavkislay9442 4 жыл бұрын
Sir can u please make playlist on oops also
@codeitup
@codeitup 4 жыл бұрын
Sure but it will take some time !
3 жыл бұрын
Sir I have an extra method to code this, pls let me know whether I am wrong or right? and mine one is using string function's feature. n = int(input("Enter a number: ")) sum = 0 i = n a = len(str(n)) while i > 0: digit = i % 10 sum += digit ** a i //= 10 if n == sum: print(n, "is an Armstrong number") else: print(n, "is not an Armstrong number")
@Ansh_Rajpoot_
@Ansh_Rajpoot_ 4 жыл бұрын
Sir can we use len () function instead of looop
@codeitup
@codeitup 4 жыл бұрын
Yes you can ! But in exams you can not use pre defined functions.
@AMRITPALSINGH-so2lj
@AMRITPALSINGH-so2lj 3 жыл бұрын
n=int(input("ENTER NUMBER:")) i=n count=0 while(i>0): i=i//10 count=count+1 i=n sum=0 while(i>0): sum=sum+(i%10)**count i=i//10 if(sum==n): print("ARMSTRONG") else: print("NOT ARMSTRONG") sir aisa kar sakte hai?
@codeitup
@codeitup 3 жыл бұрын
Yes, kar sakte hai !
@meow-rd6op
@meow-rd6op 4 жыл бұрын
Sir previous armstrong ki video mai toh kuch aur coding thi?
@codeitup
@codeitup 4 жыл бұрын
Previous coding sirf 3 digit number ko hi armstrong ke lie check kar sakta tha. Ye any number of digit ke lie hai.
@meow-rd6op
@meow-rd6op 4 жыл бұрын
@@codeitup ohkh sir.thnx
@Iamkaran553
@Iamkaran553 4 жыл бұрын
Sir mai 12th class mai hu , sir mai abhi python study kr rha hu 117 video lecture wali playlist dekh rha hu,to kya sir mujhe class 12 python wali bhi playlist dekhni pdegi, in dono playlist mai same content ya different hai
@asitchavda9191
@asitchavda9191 4 жыл бұрын
Sir aise bhi kar sakte he na?? i=int(input("enter the number=")) a=n=i count=0 while(i>0): i=i//10 count=count+1 sum=0 while(a>0): sum=sum+(a%10)**count a=a//10 if sum==n: print("number is Armstrong") else: print("number is not Armstrong")
@ShadabAnsari-dt4ni
@ShadabAnsari-dt4ni 3 жыл бұрын
i=int(input('enter value')) org=i count=0 while i>0: i=i//10 count=count+1 org=i sum=0 while i>0: digit=i%10 x=1 prod=1 while x>=count: prod=prod*digit x=x+1 sum=sum+prod i=i//10 if org==sum: print('Arm') else: print('Not Arm')
@aashishgupta1580
@aashishgupta1580 2 жыл бұрын
n5 = input("Enter the number :") a = int(n5) b = a n5 = list(n5) i = len(n5) sum3 = 0 while a>0: sum3 = sum3 + (a % 10)**i a = a//10 if b == sum3: print("Number is Armstrong") else: print("Number is not Armstrong") the above code is also right or not at all conditions. please reply me.
@Ansh_Rajpoot_
@Ansh_Rajpoot_ 4 жыл бұрын
Sir please make a whats app group for this course
@atulsharma2490
@atulsharma2490 4 жыл бұрын
Ye muskil lag Raha he sir ji...koi or method ho to bataye
@codeitup
@codeitup 4 жыл бұрын
Armstrong ka program hota hi thora complex hai. Bas video, 2-3 baar dekhie with full concentration and I am sure aapko samajh aa jaega..
@atulsharma2490
@atulsharma2490 4 жыл бұрын
Sir Aapke video achche se samaj aa rahe he....thanks.👍👍👍...Mera ek sawal he abi recently mere pas PC nhi he.. kya ye aap k samjhye hue program Android pr Chala sakta hu ? Kese? Or ye Jupiter note book par bhi aap k program run ho jayege?
@codeitup
@codeitup 4 жыл бұрын
@@atulsharma2490 You can use QPython app to run the python programs in Android. Yes, all these programs may run on Jupyter.
@codeitup
@codeitup 4 жыл бұрын
@@atulsharma2490 You may use QPython app to run all the python programs in mobile.
@codeitup
@codeitup 4 жыл бұрын
@@atulsharma2490 You can run all python programs in an App called QPython.
@GarywinBhullar
@GarywinBhullar Жыл бұрын
Complicated video
@mayanksinghbhadoria5808
@mayanksinghbhadoria5808 Жыл бұрын
thank you sir
Python Program to Find Product of Digits - In Hindi
7:47
codeitup
Рет қаралды 65 М.
Python Program to Check If the Number is Armstrong or Not?
14:37
WsCube Tech
Рет қаралды 66 М.
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 16 МЛН
“Don’t stop the chances.”
00:44
ISSEI / いっせい
Рет қаралды 42 МЛН
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 28 МЛН
Чистка воды совком от денег
00:32
FD Vasya
Рет қаралды 6 МЛН
Armstrong Program in Python | Learn Coding
9:59
Learn Coding
Рет қаралды 15 М.
Armstrong Number in Java - In Hindi
22:38
codeitup
Рет қаралды 47 М.
Program To Check for Armstrong Number in Java by Deepak
16:11
Smart Programming
Рет қаралды 332 М.
Python Program to Check Armstrong Number
18:08
CodeWithHarry
Рет қаралды 102 М.
Python Armstrong Number Program (For 3 Digit Number) - In Hindi
11:05
threading vs multiprocessing in python
22:31
Dave's Space
Рет қаралды 597 М.
She made herself an ear of corn from his marmalade candies🌽🌽🌽
00:38
Valja & Maxim Family
Рет қаралды 16 МЛН