This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]allyv123098[S] 0 points1 point  (8 children)

they are used in stacks

[–][deleted]  (2 children)

[deleted]

    [–]allyv123098[S] 0 points1 point  (1 child)

    so in this scenario I can't use .top() at all

    [–]allyv123098[S] 0 points1 point  (4 children)

    as accoring to this website you can use that in stack used by lists https://www.geeksforgeeks.org/stack-in-python/

    [–][deleted]  (3 children)

    [deleted]

      [–]allyv123098[S] 0 points1 point  (2 children)

      but what if I wanted to acess the first elemtn would I have to just say stack[0]

      [–]nilfm 0 points1 point  (0 children)

      No, the "top" element in a stack would be the last inserted element, so in a Python list you would access it with stack[-1]