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.
@devyanshgupta290110 ай бұрын
best of luck everyone jiska bhi subah exam hai
@letsamaze707210 ай бұрын
Are you ready ?
@ekanshdeep440810 ай бұрын
@@letsamaze7072 nha bro
@devanshsingh426410 ай бұрын
No bro
@Ayushpatell88Ай бұрын
All the best for your 29 March 2025 exam❤
@thinker1024 күн бұрын
That day it's my birthday 😅
@PARTH-g2o11 күн бұрын
@@thinker10ohh nice😅
@sagargamerofficial46510 күн бұрын
Thank you
@epiccube859410 ай бұрын
All the best to all for today's exam
@gamerzzhub596410 ай бұрын
kis kis ka exam kl hai???
@24rage10 ай бұрын
Bhai dimg sahi hai ?sabka kal he hoga
@atozgaming753610 ай бұрын
lol mera bhi hai kl, good luck aapko bhi 👍
@PeachePeache-o7w10 ай бұрын
Samjh ni aara kuch🤧🤧
@sim437310 ай бұрын
@@24ragerude
@jitinkumar12410 ай бұрын
Aaj h😅
@TofuMilkbread2 жыл бұрын
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],'
@garv33552 жыл бұрын
king
@shreeyashmishra21202 жыл бұрын
king
@mrxerg98452 жыл бұрын
king
@Abhinav-gu2ui2 жыл бұрын
King ?
@garv33552 жыл бұрын
@@Abhinav-gu2ui king
@nishantpanda8482 жыл бұрын
11:25 the most epic part🤣🤣🤣
@pawanijoshi286910 ай бұрын
😂 Seriously...
@funwithkrish00910 ай бұрын
All the best for you 2 april 2024 Exam ❤
@nathenmathew56674 жыл бұрын
pls post notes for this video notes are the best parts of the series
@ignaitog2 жыл бұрын
Abbe Yeh code h Iske koi notes thodi hain lmao
@horde4792 жыл бұрын
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],'
@divyanshujod4 жыл бұрын
Best in the world "Aman dhattarwal" zabardast.
@RudyTanwar16 күн бұрын
Best teacher ever❤
@puneetpradhan76573 жыл бұрын
Thanks a lot :))) Love to the apni kaksha team
@manasgupta772410 ай бұрын
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
@vivaanreddy877110 ай бұрын
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(' ')
@Kidzone12894 жыл бұрын
Aman bhaiya zindabad....🙏🙏🙏
@college14944 жыл бұрын
NOTES UPLOAD KAR DO BHAIYA!!!!! PRACTICALS AND PRE BOARDS H
@eugenemartin74752 жыл бұрын
itna bhagaate kyu ho yaar saare videos me
@yashsharma32802 жыл бұрын
ya
@subasit12210 ай бұрын
Nahi bhagane par phir tum log 2x pe dekhto ho isiliye
@amanguptan3 ай бұрын
@@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Ай бұрын
4 saal purani hai video 😑@@amanguptan
@gauravkaushik93842 жыл бұрын
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)
@Rbrnrntbetntybet2 жыл бұрын
Thodan jyada he 'if' use kar diya . All the best for cs exam.
@MadMax-fs3cy2 жыл бұрын
@@Rbrnrntbetntybet elif hoga right?
@mrsprite3992 жыл бұрын
@@MadMax-fs3cy Haa If ch==1 ke baad elif= 2, 3,4...etc hoga
@GamingBeastR4W2 жыл бұрын
@@MadMax-fs3cy else bhi hoga last me if -elif - else
@Shubham-oo8vv2 жыл бұрын
Item is not defined
@BilashiniOram-fo1hm10 ай бұрын
12:30 most epic
@viee4882 жыл бұрын
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 Жыл бұрын
What does %d and %item mean?
@viee488 Жыл бұрын
@@adityabhandari6145 check out 8:45 you will get it
@obssgurl-yk5qg Жыл бұрын
@@viee488 yes but what does it mean?
@aditya__exe4 жыл бұрын
11:23 🤣🤣🤣🤣
@sathibanerjee36604 жыл бұрын
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 : 😑😑
@harshsharma41974 жыл бұрын
Lol
@itsmechris37913 жыл бұрын
@@harshsharma4197 😂
@riachuphal32333 жыл бұрын
Me : writing andhe 1.... 5dalna tha in my pre board if I've to write menu driven program for stack My marks : Rip💔🙂
@DevSharma-ez1gx3 жыл бұрын
Andhe galat ch padh liya term 1 me nhi tha 😂
@thattechieguy2 жыл бұрын
@@parveenparveen4565 most probably case based question or a sample code edit problems
@ArryanhMesson Жыл бұрын
Why we are writing top = len(stk)-1 why not top = len(stk) only
@mihirsamanyut21910 ай бұрын
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!
@brrrrrrrrrr93132 жыл бұрын
are ch==5 k niche break dene se kay kisika error dikah raha h?? error- break outside the loop
@no1shorts_2 жыл бұрын
One day before exam. Willl. Like 😂 👍
@yadav_ji_788_10 ай бұрын
Thnx sir😊😊
@techwithdeepesh53672 жыл бұрын
सी please लॉन्च cs series for tomorrow board paper
@adityaa.283 жыл бұрын
Thankyou bhaiya!!☺️☺️☺️
@angadprajapati28542 жыл бұрын
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 Жыл бұрын
Hey dude can u send ur Program here.
@angadprajapati2854 Жыл бұрын
@@Patelnchora69 I am outside from home!!
@Patelnchora69 Жыл бұрын
@@angadprajapati2854 oh.
@GamingwithVansh15 ай бұрын
Bro have u reached home?@@angadprajapati2854
@atozintelligence47924 жыл бұрын
Thank you so much Aman Bhaiya and Team 🙏🏻
@debanjanmajumdar53832 жыл бұрын
Eat well, Sleep well and study well...🙂
@meghasaxena82643 жыл бұрын
how can this code be used for string value
@manaspandey72433 жыл бұрын
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$$$😌
@Param30214 жыл бұрын
Sir notes ka link daal do
@HarshKumar-sh3hm3 жыл бұрын
Description mai code Kaha hain
@mml1194 жыл бұрын
Sir Syllabus kab complete hoga??
@kushanchaudhary78672 жыл бұрын
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-32 жыл бұрын
Thanks bro!
@samarthnegi12092 жыл бұрын
@@keer-3 iss saal stack implimentation tk he ayega na? application of stack cut ho gya? kya
@thechosenone2004B2 жыл бұрын
me sochra tha sab to sahi kr rha hu galat kaise aa rha h, def spop try kr k dekhta hu
@Heritageunfolded10 ай бұрын
Thnsksss
@devikaharlalka54684 жыл бұрын
Sir pls phy ka second books ka notes dedijiye mra preboards hai
@gouravsinghchauhan1364 жыл бұрын
What 'bout my notes?🙈
@gouravsinghchauhan1364 жыл бұрын
Take it easy 😂👍
@Rose-5re6 ай бұрын
Sir pehle h jinka video slow krk dekhna pad rha h
@MamtaSharma-ji8qb4 жыл бұрын
bhaiya huge huge huge request to u pls upload aldehyde ,ketones notes 🙏🙏🙏🙏🙏🙏🙏🙏
@callisto18364 жыл бұрын
thank you for such great lecture harsh sir you teach really well
@harshsharma41974 жыл бұрын
Thanks
@kitoo26244 жыл бұрын
what is the use of %d here?
@thattechieguy2 жыл бұрын
just a future reference operator ..
@rajkumarchoudary48194 жыл бұрын
Sir, IP walo ka lia plz... Pythan or my SQL ka corse dalo plz... 🙏🙏🙏🙏🙏 I who also want...
@shreeyashmishra21202 жыл бұрын
can someone tell what's the text editor or software he's using?
@shreeyansh-x5l2 жыл бұрын
Vs text editor
@shreeyashmishra21202 жыл бұрын
@@shreeyansh-x5l thanks man
@s2jee8212 жыл бұрын
14:09 wahi to nhi hai 😐🙃
@BabyBoo0042 жыл бұрын
Ye konse applicatⁿ pe code likha or run kraya??
@winterfrost24674 ай бұрын
10 bjne wale hain aur mein pop top par rha... 🫠
@nikhilbaisla86934 жыл бұрын
Bhai top ki value len-1 kaise h?
@thattechieguy2 жыл бұрын
top kyuki top element alag se treat kiya gaya hai ussko special mention kiya hai
@inshazaidi39864 жыл бұрын
Thank u sooo muchh bhaiyaaa Stay blessed
@Shanghai_Shine2 жыл бұрын
Bhaiya Konsa version use karte ho python ka
@void86685 ай бұрын
Can anyone explain to me what this %d and %item is for?
@MukeshNegi-qg4uo19 күн бұрын
Isme Jo item ki value h vo %d ki jagah aa jayegi jab ham value dalenge output me
@MukeshNegi-qg4uo19 күн бұрын
Like tumne item ki value 5 dali to last me print hoga 5 added successfully
@arpita64794 жыл бұрын
Bhaiya code kaha hai description box me
@ehtishama30664 жыл бұрын
code nhi mil rha hai, aur muje error aa rha hai
@arpita64794 жыл бұрын
@@ehtishama3066 main de du kya code?
@ehtishama30664 жыл бұрын
@@arpita6479 yes bro, please share link
@remadas04 жыл бұрын
link to the notes not given
@abhiii_navvv4 жыл бұрын
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..
@vivaanreddy877110 ай бұрын
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(' ')
@Pikachu8362210 ай бұрын
Bruuuh...ye yad kese hoga😂
@huzaifa943810 ай бұрын
does it is correct code !?
@ashvanichaudhary97824 жыл бұрын
Sir kya MySQL ki bhi classes hongi?
@thattechieguy2 жыл бұрын
videos available kindly check
@LUCIFER-yk1jt10 ай бұрын
Sir ' global ' variable should be used in every function definition for top. without it, it is showing error
@yuvrajbhaia29393 жыл бұрын
Why did we take S=[ ] , when we didn't use it anywhere in the code??
@thattechieguy2 жыл бұрын
bro here S acts as stk for the rest of the program
Bhaiya yaha error dikha raha hai... It's telling that "local variable refrencedy before assignment"
@thattechieguy2 жыл бұрын
kindly see my comment and it's reply in the comment section
@mr.arshad98033 жыл бұрын
sir plsss give discord link jo description main thi wo wali expire ho gyi
@praveenagarwal94624 жыл бұрын
Bhaiya wave optics ke notes aur semiconductor ke notes Bhi Daal dijiye aap KZbin par ....🙏
@b.harish40804 жыл бұрын
Wave optics already uploaded on discord
@priyanshukumarsaw81213 жыл бұрын
Please share it's notes
@karandx_official2 жыл бұрын
Sir please provide the link of the code 🙏🙏
@musicophilic30404 жыл бұрын
Can anyone please tell me where we can find new notes of wave optics by Aman bhaiya?
@munmun28304 жыл бұрын
Discod server☺
@musicophilic30404 жыл бұрын
@@munmun2830 kon sa?
@sayanjitb3 жыл бұрын
How to get this code file?
@thattechieguy2 жыл бұрын
diy
@deepanshubaberval89114 жыл бұрын
Where is not of this lecture
@siddeshshinde73034 жыл бұрын
Aman bhaiya please assembly language programing bhi karo na
@ZAMislive4 жыл бұрын
great video bro i laughed when the first output come, at the very first time
@amanvedio554 жыл бұрын
Sir vector chapter ka vedio banaiye
@gurmankaur10604 жыл бұрын
Dosto ye %d kya h?
@avinash82382 жыл бұрын
Which software is this ?
@vectorx20034 жыл бұрын
Re-upload old videos of C++ for Class 12
@akshatjaiswal60733 жыл бұрын
Ye )practical me aa skta hai?
@Thesongmate Жыл бұрын
Kis application pe code krte ho bta do please
@sanjaysrivastava9849 Жыл бұрын
Vs code
@minhadtuashimahmed38734 жыл бұрын
Yeh to bahut lamba program haii.... Exam m stack queue se related kaise questiom ayenge???
@gatijshakyawar36743 жыл бұрын
Agli baar se mai bhi 'Andhe 1-5 daalna tha' hi dalunga else condition me🤣
@41.paridarshansahoo312 жыл бұрын
which python software u r use?
@shreeyashmishra21202 жыл бұрын
vs text editor
@ahamedomaraziz63524 ай бұрын
i still didnt understand the reason for putting the empty s=[]
@dhyeytank8353 жыл бұрын
Where are the notes of this lecture???....not there in the description box
@goingstoppers79443 жыл бұрын
Notes kaha hai???
@AdityaSharma-fp8lo3 жыл бұрын
This is the most code intensive lecture.......thanks bhaiya😊😊😊😊 and pls everyone like share its dissapointing that likes are decreasing video by video.....😐😐😐😐
@hi71562 жыл бұрын
Bhaiya hadd se jyaada ad daalte hai 💀
@dakshjain66734 жыл бұрын
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 🙏🙏🙏
@renumalik83864 жыл бұрын
Sir plz jaldi jaldi cs python ka pura syllabus kar va dijiye for baords As we are having our pre boards in February
@Ashu_73 жыл бұрын
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
@thattechieguy2 жыл бұрын
use ide provided by jetbrains
@devyanjha Жыл бұрын
Please upload notes of this lecture
@priyankpatel55013 жыл бұрын
Maza AYA !!!!
@USameer_gurjar2 жыл бұрын
Sach h na
@nursing9294 Жыл бұрын
Sir es playlist ke poore notes toh upload kr dete..
@prathemeshjankwade9641 Жыл бұрын
How many marks to pass in computer science in theory please reply
@MeetThakur_ Жыл бұрын
23.5
@nikunjgupta5742 Жыл бұрын
24
@adityaupmanyu-nc7xq Жыл бұрын
Bhai 20 ka kardega to 4 extra badha dete hai 🎉
@sythe2632 жыл бұрын
awesome!
@mayankraj37833 жыл бұрын
Aap vs code m code krte ho na
@sahajpreet34482 жыл бұрын
pop is not working man even if i have changed the function name
@manthansinghrauthanof8thc5436 ай бұрын
bro hamari teacher ne hamse sign karva liye ki 60 % stack me nahi ay to 1week ke liye suspension.
@nandinisharma10554 ай бұрын
mtlb?
@amralifts3 жыл бұрын
I enjoy the way he says, "Eat well, sleep well and Study well!!"