STACK IMPLEMENTATION | Push, Pop, Display | Class 12 Python | Computer Science for Board

  Рет қаралды 321,288

Apni Kaksha Official

Apni Kaksha Official

Күн бұрын

Пікірлер: 279
@grin2groin._.624
@grin2groin._.624 Жыл бұрын
Namaste Harsh sir. Mein abhi abhi scl se half yearly exams deke aa rha hu. Aapke python ke videos mein last 3 days se follow kar rha hu aur sir aaj sahi mein exam hall mein paper deke khushi hua. Thank you sir. Aapke lectures bahut helpful hai. Kam time mein best way hai ye series python sikhne ke liye.
@devyanshgupta2901
@devyanshgupta2901 10 ай бұрын
best of luck everyone jiska bhi subah exam hai
@letsamaze7072
@letsamaze7072 10 ай бұрын
Are you ready ?
@ekanshdeep4408
@ekanshdeep4408 10 ай бұрын
@@letsamaze7072 nha bro
@devanshsingh4264
@devanshsingh4264 10 ай бұрын
No bro
@Ayushpatell88
@Ayushpatell88 Ай бұрын
All the best for your 29 March 2025 exam❤
@thinker10
@thinker10 24 күн бұрын
That day it's my birthday 😅
@PARTH-g2o
@PARTH-g2o 11 күн бұрын
​@@thinker10ohh nice😅
@sagargamerofficial465
@sagargamerofficial465 10 күн бұрын
Thank you
@epiccube8594
@epiccube8594 10 ай бұрын
All the best to all for today's exam
@gamerzzhub5964
@gamerzzhub5964 10 ай бұрын
kis kis ka exam kl hai???
@24rage
@24rage 10 ай бұрын
Bhai dimg sahi hai ?sabka kal he hoga
@atozgaming7536
@atozgaming7536 10 ай бұрын
lol mera bhi hai kl, good luck aapko bhi 👍
@PeachePeache-o7w
@PeachePeache-o7w 10 ай бұрын
Samjh ni aara kuch🤧🤧
@sim4373
@sim4373 10 ай бұрын
​@@24ragerude
@jitinkumar124
@jitinkumar124 10 ай бұрын
Aaj h😅
@TofuMilkbread
@TofuMilkbread 2 жыл бұрын
CODE: s=[] top=None def isEmpty(stk): if stk==[]: return True else: return False def push(stk,item): s.append(item) top=len(stk)-1 def spop(stk): if(isEmpty(stk)): return('UnderFlow!') else: i = stk.pop() if(len(stk) ==0): top=None else: top=top-1 return i def peek(stk): if isEmpty(stk): return('underflow') else: top=len(stk)-1 return(stk[top]) def display(stk): if(isEmpty(stk)): print('Stack is empty!') else: top=len(stk)-1 print(stk[top],'
@garv3355
@garv3355 2 жыл бұрын
king
@shreeyashmishra2120
@shreeyashmishra2120 2 жыл бұрын
king
@mrxerg9845
@mrxerg9845 2 жыл бұрын
king
@Abhinav-gu2ui
@Abhinav-gu2ui 2 жыл бұрын
King ?
@garv3355
@garv3355 2 жыл бұрын
@@Abhinav-gu2ui king
@nishantpanda848
@nishantpanda848 2 жыл бұрын
11:25 the most epic part🤣🤣🤣
@pawanijoshi2869
@pawanijoshi2869 10 ай бұрын
😂 Seriously...
@funwithkrish009
@funwithkrish009 10 ай бұрын
All the best for you 2 april 2024 Exam ❤
@nathenmathew5667
@nathenmathew5667 4 жыл бұрын
pls post notes for this video notes are the best parts of the series
@ignaitog
@ignaitog 2 жыл бұрын
Abbe Yeh code h Iske koi notes thodi hain lmao
@horde479
@horde479 2 жыл бұрын
i tried writing the code :D s = [] top = None def isEmpty(stk): if stk==[]: return True else: return False def push(stk,item): stk.append(item) def pop(stk): if(isEmpty(stk)): return('UnderFlow') else: i = stk.pop() return i def peek(stk): if isEmpty(stk): return('underflow') else: return(stk[len(stk)-1]) def display(stk): if(isEmpty(stk)): print('Stack is empty!') else: top=len(stk)-1 print(stk[top],'
@divyanshujod
@divyanshujod 4 жыл бұрын
Best in the world "Aman dhattarwal" zabardast.
@RudyTanwar
@RudyTanwar 16 күн бұрын
Best teacher ever❤
@puneetpradhan7657
@puneetpradhan7657 3 жыл бұрын
Thanks a lot :))) Love to the apni kaksha team
@manasgupta7724
@manasgupta7724 10 ай бұрын
5:15 sir but agar hame shrif peek karna hai to ham direct -1 index bhi to print kara sakate hai wo bhi to top he hai
@vivaanreddy8771
@vivaanreddy8771 10 ай бұрын
stack = [] def push(stk, item): stk.append(item) def pop(stk): if not stk: return 'Underflow!' return stk.pop() def peek(stk): if not stk: return 'Underflow!' return stk[-1] def display(stk): if not stk: print('Stack is empty!') else: print('Top of the stack: ', stk[-1]) print('Stack elements:') for item in reversed(stk): print(item) while True: choice = input('''STACK IMPLEMENTATION 1. PUSH 2. POP 3. PEEK 4. DISPLAY 5. EXIT Enter your choice (1-5): ''') if choice == '1': item = int(input("Enter the item you want to push: ")) push(stack, item) print(item,' added successfully') elif choice == '2': item = pop(stack) if item == 'Underflow!': print('Stack is empty') else: print(item,' popped from the stack') elif choice == '3': item = peek(stack) if item == 'Underflow!': print('Stack is empty') else: print('%d is at the top of the stack' % item) elif choice == '4': display(stack) elif choice == '5': break else: print('Invalid input') print(' ')
@Kidzone1289
@Kidzone1289 4 жыл бұрын
Aman bhaiya zindabad....🙏🙏🙏
@college1494
@college1494 4 жыл бұрын
NOTES UPLOAD KAR DO BHAIYA!!!!! PRACTICALS AND PRE BOARDS H
@eugenemartin7475
@eugenemartin7475 2 жыл бұрын
itna bhagaate kyu ho yaar saare videos me
@yashsharma3280
@yashsharma3280 2 жыл бұрын
ya
@subasit122
@subasit122 10 ай бұрын
Nahi bhagane par phir tum log 2x pe dekhto ho isiliye
@amanguptan
@amanguptan 3 ай бұрын
​@@subasit122Tu dekhta hoga 2x pe hmlog nhi jo chiz pehle padh liye hai usko 2x me dekha jata hai per ye aaj padh reha hai or ye channel khud 2x me video bhaga reha hai
@chamanpreetverma1869
@chamanpreetverma1869 Ай бұрын
4 saal purani hai video 😑​@@amanguptan
@gauravkaushik9384
@gauravkaushik9384 2 жыл бұрын
def Push(stk,item): stk.append(item) print("Item is added successfully to the stack") def Pop(stk): if stk==[]: print("Stack is already Empty") else: stk.pop() def Display(stk): a=stk[::-1] print(a) stk=[] while True: print("1.Push 2.Pop 3.Display") ch=int(input("Enter Your Choice:::")) if ch==1: no.=int(input("Enter no. to be added:::")) Push(stk,no.) if ch==2: Pop(stk) if ch==3: Display(stk)
@Rbrnrntbetntybet
@Rbrnrntbetntybet 2 жыл бұрын
Thodan jyada he 'if' use kar diya . All the best for cs exam.
@MadMax-fs3cy
@MadMax-fs3cy 2 жыл бұрын
@@Rbrnrntbetntybet elif hoga right?
@mrsprite399
@mrsprite399 2 жыл бұрын
@@MadMax-fs3cy Haa If ch==1 ke baad elif= 2, 3,4...etc hoga
@GamingBeastR4W
@GamingBeastR4W 2 жыл бұрын
@@MadMax-fs3cy else bhi hoga last me if -elif - else
@Shubham-oo8vv
@Shubham-oo8vv 2 жыл бұрын
Item is not defined
@BilashiniOram-fo1hm
@BilashiniOram-fo1hm 10 ай бұрын
12:30 most epic
@viee488
@viee488 2 жыл бұрын
THE CORRECT CODE s=[] top=None def isEmpty(stk): if stk==[]: return True else: return False def push(stk,item): s.append(item) top=len(stk)-1 def spop(stk): if(isEmpty(stk)): return('underflow') else: i = stk.pop() return i if(len(stk) ==0): top=None else: top=top-1 def peek(stk): if isEmpty(stk): return('underflow') else: top=len(stk)-1 return(stk[top]) def display(stk): if(isEmpty(stk)): print('Stack is empty!') else: top=len(stk)-1 print(stk[top],'
@adityabhandari6145
@adityabhandari6145 Жыл бұрын
What does %d and %item mean?
@viee488
@viee488 Жыл бұрын
@@adityabhandari6145 check out 8:45 you will get it
@obssgurl-yk5qg
@obssgurl-yk5qg Жыл бұрын
@@viee488 yes but what does it mean?
@aditya__exe
@aditya__exe 4 жыл бұрын
11:23 🤣🤣🤣🤣
@sathibanerjee3660
@sathibanerjee3660 4 жыл бұрын
Teacher : You don't attend my class; still you're scoring 90+ in every CS paper; what's the secret? Me : Sir, have you heard of Harsh Sharma of Apni Kaksha? Teacher : 😑😑
@harshsharma4197
@harshsharma4197 4 жыл бұрын
Lol
@itsmechris3791
@itsmechris3791 3 жыл бұрын
@@harshsharma4197 😂
@riachuphal3233
@riachuphal3233 3 жыл бұрын
Me : writing andhe 1.... 5dalna tha in my pre board if I've to write menu driven program for stack My marks : Rip💔🙂
@DevSharma-ez1gx
@DevSharma-ez1gx 3 жыл бұрын
Andhe galat ch padh liya term 1 me nhi tha 😂
@thattechieguy
@thattechieguy 2 жыл бұрын
@@parveenparveen4565 most probably case based question or a sample code edit problems
@ArryanhMesson
@ArryanhMesson Жыл бұрын
Why we are writing top = len(stk)-1 why not top = len(stk) only
@mihirsamanyut219
@mihirsamanyut219 10 ай бұрын
basically top gives us the index of the most recent element in stack and the indexing in list starts from 0 onwards, so top= len(stk)-1. Eg: L=[a,b,c,d] the len(L)=4 but index of d is 3. Hope this helps!
@brrrrrrrrrr9313
@brrrrrrrrrr9313 2 жыл бұрын
are ch==5 k niche break dene se kay kisika error dikah raha h?? error- break outside the loop
@no1shorts_
@no1shorts_ 2 жыл бұрын
One day before exam. Willl. Like 😂 👍
@yadav_ji_788_
@yadav_ji_788_ 10 ай бұрын
Thnx sir😊😊
@techwithdeepesh5367
@techwithdeepesh5367 2 жыл бұрын
सी please लॉन्च cs series for tomorrow board paper
@adityaa.28
@adityaa.28 3 жыл бұрын
Thankyou bhaiya!!☺️☺️☺️
@angadprajapati2854
@angadprajapati2854 2 жыл бұрын
Bro your code means stack implementation program contains under 77 line program Even I have a also program under 25 to 40 lines like stack implementation and my program was too easy and understandable!!!
@Patelnchora69
@Patelnchora69 Жыл бұрын
Hey dude can u send ur Program here.
@angadprajapati2854
@angadprajapati2854 Жыл бұрын
@@Patelnchora69 I am outside from home!!
@Patelnchora69
@Patelnchora69 Жыл бұрын
@@angadprajapati2854 oh.
@GamingwithVansh1
@GamingwithVansh1 5 ай бұрын
Bro have u reached home?​@@angadprajapati2854
@atozintelligence4792
@atozintelligence4792 4 жыл бұрын
Thank you so much Aman Bhaiya and Team 🙏🏻
@debanjanmajumdar5383
@debanjanmajumdar5383 2 жыл бұрын
Eat well, Sleep well and study well...🙂
@meghasaxena8264
@meghasaxena8264 3 жыл бұрын
how can this code be used for string value
@manaspandey7243
@manaspandey7243 3 жыл бұрын
Hatts of to harsh bhaiya,aman bhaiya and all bhaiyas and Didi's😊😊😊 for making a pure and awesome content. You would always be remembered. Respect man!!!! Respect$$$😌
@Param3021
@Param3021 4 жыл бұрын
Sir notes ka link daal do
@HarshKumar-sh3hm
@HarshKumar-sh3hm 3 жыл бұрын
Description mai code Kaha hain
@mml119
@mml119 4 жыл бұрын
Sir Syllabus kab complete hoga??
@kushanchaudhary7867
@kushanchaudhary7867 2 жыл бұрын
This is the right code if you are having problem with pop :) --------------------------Code------------------------------------- s=[] top=None def isEmpty(stk): if stk==[]: return True else: return False def push(stk,item): s.append(item) top=len(stk)-1 def spop(stk): if(isEmpty(stk)): return('UnderFlow!') else: i = stk.pop() if(len(stk) ==0): top=None else: top=-1 return i def peek(stk): if isEmpty(stk): return('underflow') else: top=len(stk)-1 return(stk[top]) def display(stk): if(isEmpty(stk)): print('Stack is empty!') else: top=len(stk)-1 print(stk[top],'
@keer-3
@keer-3 2 жыл бұрын
Thanks bro!
@samarthnegi1209
@samarthnegi1209 2 жыл бұрын
@@keer-3 iss saal stack implimentation tk he ayega na? application of stack cut ho gya? kya
@thechosenone2004B
@thechosenone2004B 2 жыл бұрын
me sochra tha sab to sahi kr rha hu galat kaise aa rha h, def spop try kr k dekhta hu
@Heritageunfolded
@Heritageunfolded 10 ай бұрын
Thnsksss
@devikaharlalka5468
@devikaharlalka5468 4 жыл бұрын
Sir pls phy ka second books ka notes dedijiye mra preboards hai
@gouravsinghchauhan136
@gouravsinghchauhan136 4 жыл бұрын
What 'bout my notes?🙈
@gouravsinghchauhan136
@gouravsinghchauhan136 4 жыл бұрын
Take it easy 😂👍
@Rose-5re
@Rose-5re 6 ай бұрын
Sir pehle h jinka video slow krk dekhna pad rha h
@MamtaSharma-ji8qb
@MamtaSharma-ji8qb 4 жыл бұрын
bhaiya huge huge huge request to u pls upload aldehyde ,ketones notes 🙏🙏🙏🙏🙏🙏🙏🙏
@callisto1836
@callisto1836 4 жыл бұрын
thank you for such great lecture harsh sir you teach really well
@harshsharma4197
@harshsharma4197 4 жыл бұрын
Thanks
@kitoo2624
@kitoo2624 4 жыл бұрын
what is the use of %d here?
@thattechieguy
@thattechieguy 2 жыл бұрын
just a future reference operator ..
@rajkumarchoudary4819
@rajkumarchoudary4819 4 жыл бұрын
Sir, IP walo ka lia plz... Pythan or my SQL ka corse dalo plz... 🙏🙏🙏🙏🙏 I who also want...
@shreeyashmishra2120
@shreeyashmishra2120 2 жыл бұрын
can someone tell what's the text editor or software he's using?
@shreeyansh-x5l
@shreeyansh-x5l 2 жыл бұрын
Vs text editor
@shreeyashmishra2120
@shreeyashmishra2120 2 жыл бұрын
@@shreeyansh-x5l thanks man
@s2jee821
@s2jee821 2 жыл бұрын
14:09 wahi to nhi hai 😐🙃
@BabyBoo004
@BabyBoo004 2 жыл бұрын
Ye konse applicatⁿ pe code likha or run kraya??
@winterfrost2467
@winterfrost2467 4 ай бұрын
10 bjne wale hain aur mein pop top par rha... 🫠
@nikhilbaisla8693
@nikhilbaisla8693 4 жыл бұрын
Bhai top ki value len-1 kaise h?
@thattechieguy
@thattechieguy 2 жыл бұрын
top kyuki top element alag se treat kiya gaya hai ussko special mention kiya hai
@inshazaidi3986
@inshazaidi3986 4 жыл бұрын
Thank u sooo muchh bhaiyaaa Stay blessed
@Shanghai_Shine
@Shanghai_Shine 2 жыл бұрын
Bhaiya Konsa version use karte ho python ka
@void8668
@void8668 5 ай бұрын
Can anyone explain to me what this %d and %item is for?
@MukeshNegi-qg4uo
@MukeshNegi-qg4uo 19 күн бұрын
Isme Jo item ki value h vo %d ki jagah aa jayegi jab ham value dalenge output me
@MukeshNegi-qg4uo
@MukeshNegi-qg4uo 19 күн бұрын
Like tumne item ki value 5 dali to last me print hoga 5 added successfully
@arpita6479
@arpita6479 4 жыл бұрын
Bhaiya code kaha hai description box me
@ehtishama3066
@ehtishama3066 4 жыл бұрын
code nhi mil rha hai, aur muje error aa rha hai
@arpita6479
@arpita6479 4 жыл бұрын
@@ehtishama3066 main de du kya code?
@ehtishama3066
@ehtishama3066 4 жыл бұрын
@@arpita6479 yes bro, please share link
@remadas0
@remadas0 4 жыл бұрын
link to the notes not given
@abhiii_navvv
@abhiii_navvv 4 жыл бұрын
Bhaiya aapki Alternating current wali video ka 1st lecture chal Nhi rha h Baaki sare Chl rhe h Unacadmey app pr kuch Kro bhaiya plz plz..
@vivaanreddy8771
@vivaanreddy8771 10 ай бұрын
heres a simpler and far better code, stack = [] def push(stk, item): stk.append(item) def pop(stk): if not stk: return 'Underflow!' return stk.pop() def peek(stk): if not stk: return 'Underflow!' return stk[-1] def display(stk): if not stk: print('Stack is empty!') else: print('Top of the stack: ', stk[-1]) print('Stack elements:') for item in reversed(stk): print(item) while True: choice = input('''STACK IMPLEMENTATION 1. PUSH 2. POP 3. PEEK 4. DISPLAY 5. EXIT Enter your choice (1-5): ''') if choice == '1': item = int(input("Enter the item you want to push: ")) push(stack, item) print(item,' added successfully') elif choice == '2': item = pop(stack) if item == 'Underflow!': print('Stack is empty') else: print(item,' popped from the stack') elif choice == '3': item = peek(stack) if item == 'Underflow!': print('Stack is empty') else: print('%d is at the top of the stack' % item) elif choice == '4': display(stack) elif choice == '5': break else: print('Invalid input') print(' ')
@Pikachu83622
@Pikachu83622 10 ай бұрын
Bruuuh...ye yad kese hoga😂
@huzaifa9438
@huzaifa9438 10 ай бұрын
does it is correct code !?
@ashvanichaudhary9782
@ashvanichaudhary9782 4 жыл бұрын
Sir kya MySQL ki bhi classes hongi?
@thattechieguy
@thattechieguy 2 жыл бұрын
videos available kindly check
@LUCIFER-yk1jt
@LUCIFER-yk1jt 10 ай бұрын
Sir ' global ' variable should be used in every function definition for top. without it, it is showing error
@yuvrajbhaia2939
@yuvrajbhaia2939 3 жыл бұрын
Why did we take S=[ ] , when we didn't use it anywhere in the code??
@thattechieguy
@thattechieguy 2 жыл бұрын
bro here S acts as stk for the rest of the program
@aryankushwaha9306
@aryankushwaha9306 3 жыл бұрын
Bhaiya yae kya boards kae exam mae aata hai....practicals mae...plz koyi bataoo
@jackma9528
@jackma9528 4 жыл бұрын
Bhaiya yaha error dikha raha hai... It's telling that "local variable refrencedy before assignment"
@thattechieguy
@thattechieguy 2 жыл бұрын
kindly see my comment and it's reply in the comment section
@mr.arshad9803
@mr.arshad9803 3 жыл бұрын
sir plsss give discord link jo description main thi wo wali expire ho gyi
@praveenagarwal9462
@praveenagarwal9462 4 жыл бұрын
Bhaiya wave optics ke notes aur semiconductor ke notes Bhi Daal dijiye aap KZbin par ....🙏
@b.harish4080
@b.harish4080 4 жыл бұрын
Wave optics already uploaded on discord
@priyanshukumarsaw8121
@priyanshukumarsaw8121 3 жыл бұрын
Please share it's notes
@karandx_official
@karandx_official 2 жыл бұрын
Sir please provide the link of the code 🙏🙏
@musicophilic3040
@musicophilic3040 4 жыл бұрын
Can anyone please tell me where we can find new notes of wave optics by Aman bhaiya?
@munmun2830
@munmun2830 4 жыл бұрын
Discod server☺
@musicophilic3040
@musicophilic3040 4 жыл бұрын
@@munmun2830 kon sa?
@sayanjitb
@sayanjitb 3 жыл бұрын
How to get this code file?
@thattechieguy
@thattechieguy 2 жыл бұрын
diy
@deepanshubaberval8911
@deepanshubaberval8911 4 жыл бұрын
Where is not of this lecture
@siddeshshinde7303
@siddeshshinde7303 4 жыл бұрын
Aman bhaiya please assembly language programing bhi karo na
@ZAMislive
@ZAMislive 4 жыл бұрын
great video bro i laughed when the first output come, at the very first time
@amanvedio55
@amanvedio55 4 жыл бұрын
Sir vector chapter ka vedio banaiye
@gurmankaur1060
@gurmankaur1060 4 жыл бұрын
Dosto ye %d kya h?
@avinash8238
@avinash8238 2 жыл бұрын
Which software is this ?
@vectorx2003
@vectorx2003 4 жыл бұрын
Re-upload old videos of C++ for Class 12
@akshatjaiswal6073
@akshatjaiswal6073 3 жыл бұрын
Ye )practical me aa skta hai?
@Thesongmate
@Thesongmate Жыл бұрын
Kis application pe code krte ho bta do please
@sanjaysrivastava9849
@sanjaysrivastava9849 Жыл бұрын
Vs code
@minhadtuashimahmed3873
@minhadtuashimahmed3873 4 жыл бұрын
Yeh to bahut lamba program haii.... Exam m stack queue se related kaise questiom ayenge???
@gatijshakyawar3674
@gatijshakyawar3674 3 жыл бұрын
Agli baar se mai bhi 'Andhe 1-5 daalna tha' hi dalunga else condition me🤣
@41.paridarshansahoo31
@41.paridarshansahoo31 2 жыл бұрын
which python software u r use?
@shreeyashmishra2120
@shreeyashmishra2120 2 жыл бұрын
vs text editor
@ahamedomaraziz6352
@ahamedomaraziz6352 4 ай бұрын
i still didnt understand the reason for putting the empty s=[]
@dhyeytank835
@dhyeytank835 3 жыл бұрын
Where are the notes of this lecture???....not there in the description box
@goingstoppers7944
@goingstoppers7944 3 жыл бұрын
Notes kaha hai???
@AdityaSharma-fp8lo
@AdityaSharma-fp8lo 3 жыл бұрын
This is the most code intensive lecture.......thanks bhaiya😊😊😊😊 and pls everyone like share its dissapointing that likes are decreasing video by video.....😐😐😐😐
@hi7156
@hi7156 2 жыл бұрын
Bhaiya hadd se jyaada ad daalte hai 💀
@dakshjain6673
@dakshjain6673 4 жыл бұрын
Bhaiya please 🙏🙏🎉 Jaise hi 2 Feb ko dates announce hogi CBSE ki, 12 pcm ke liye full 3 months detailed strategy bana dena subject wise please🙏🙏🙏 Please bhaiya 🙏🙏🙏👍👍👍 Much needed🙏🙏 Huge request 🙏🙏 Please think on it🙏🙏 Don't ignore 🙏🙏🙏
@renumalik8386
@renumalik8386 4 жыл бұрын
Sir plz jaldi jaldi cs python ka pura syllabus kar va dijiye for baords As we are having our pre boards in February
@Ashu_7
@Ashu_7 3 жыл бұрын
Si aapki theme sabse alag can please tell us about that also yeh jo identaion ki lining show krta hai iske baare main bhi basicaaly aap apne pure python ki setting bta do ek baar Please
@thattechieguy
@thattechieguy 2 жыл бұрын
use ide provided by jetbrains
@devyanjha
@devyanjha Жыл бұрын
Please upload notes of this lecture
@priyankpatel5501
@priyankpatel5501 3 жыл бұрын
Maza AYA !!!!
@USameer_gurjar
@USameer_gurjar 2 жыл бұрын
Sach h na
@nursing9294
@nursing9294 Жыл бұрын
Sir es playlist ke poore notes toh upload kr dete..
@prathemeshjankwade9641
@prathemeshjankwade9641 Жыл бұрын
How many marks to pass in computer science in theory please reply
@MeetThakur_
@MeetThakur_ Жыл бұрын
23.5
@nikunjgupta5742
@nikunjgupta5742 Жыл бұрын
24
@adityaupmanyu-nc7xq
@adityaupmanyu-nc7xq Жыл бұрын
Bhai 20 ka kardega to 4 extra badha dete hai 🎉
@sythe263
@sythe263 2 жыл бұрын
awesome!
@mayankraj3783
@mayankraj3783 3 жыл бұрын
Aap vs code m code krte ho na
@sahajpreet3448
@sahajpreet3448 2 жыл бұрын
pop is not working man even if i have changed the function name
@manthansinghrauthanof8thc543
@manthansinghrauthanof8thc543 6 ай бұрын
bro hamari teacher ne hamse sign karva liye ki 60 % stack me nahi ay to 1week ke liye suspension.
@nandinisharma1055
@nandinisharma1055 4 ай бұрын
mtlb?
@amralifts
@amralifts 3 жыл бұрын
I enjoy the way he says, "Eat well, sleep well and Study well!!"
@siyona.snotra
@siyona.snotra 4 жыл бұрын
khaa hai code ka link
@chitrakshimahajan7932
@chitrakshimahajan7932 3 жыл бұрын
Yahan %d kya hai??
@Thinkmore-ds3fq
@Thinkmore-ds3fq 4 жыл бұрын
thank u
@akarshibajpai6367
@akarshibajpai6367 4 жыл бұрын
Bhai java k liye bhi kuch
Data Structures & Stack | Python for Class 12 | Computer Science | Lecture 17
17:54
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
Implement Stack Using List | Python Tutorials | Data Structures
8:13
Amulya's Academy
Рет қаралды 184 М.
What exactly is 'self' in Python? [Easy explanation]
6:27
Indently
Рет қаралды 54 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 2,8 МЛН
10 Key Data Structures We Use Every Day
8:43
ByteByteGo
Рет қаралды 372 М.
How to Remember Everything You Read
26:12
Justin Sung
Рет қаралды 3,3 МЛН
Stacks and Queues (Python) - Data Structures and Algorithms
14:10
File Handling in Python | Class 12 Computer Science | Lecture 12
21:57
Apni Kaksha Official
Рет қаралды 796 М.