Is there something similar in Python that I would use for a container that\'s like a vector and a list?
Any links would be helpful too.
Lists are sequences.
see http://docs.python.org/tutorial/datastructures.html
append is like push_back, see the other methods as well.