+ 1
Class stack in python
I can't understand push,pop and is_empty in class stack
2 ответов
+ 1
The method names are actually self explanatory
pop - Removes an item
push - Inserts an item
is_empty - tells whether there is data stored in
+ 1
Thanks
I can't understand push,pop and is_empty in class stack