vtarale / Stack-lib

stack lib for python

Repository from Github https://github.comvtarale/Stack-libRepository from Github https://github.comvtarale/Stack-lib

Stack-lib

stack lib for python

usage

to import

import stack_lib.queue as stack

init

s = stack.Stack()

some functions

# to add
s.add(<data>)
# to remove
# Ex
item = s.get()
# to display
s.display()
# to check if is empty
s.isempty() # returns bool

License

apache 2.0

About

stack lib for python

License:Apache License 2.0


Languages

Language:Python 100.0%