KwickClips Python · 45 sec · free
Which list method pushes onto a stack?
Short answer. append().
How do you peek at the top?
With s[-1], the last item.
Remember
| push: append(), pop: pop() |
| peek: s[-1], empty: len == 0 |
A Python list is already a stack. Here is how. S is the stack. Append pushes. Minus one index peeks. Pop removes the top. Length zero is empty. Remember two things. Push is append, pop is pop. Peek is minus one, empty is length zero.
This clip is from the full lesson: Stack Implementation Using a List — 6 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 12 Computer Science (083)
More KwickClips from this lesson
Voice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.




