Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6786551
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:15:32+00:00 2026-05-26T17:15:32+00:00

What is the specific method to iterate a stack in python. is the best

  • 0

What is the specific method to iterate a stack in python. is the best practice to use a for loop just like to iterate a list?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:15:33+00:00Added an answer on May 26, 2026 at 5:15 pm

    As the others have said, python doesn’t really have a built-in stack datatype, per se– but you can use a list to emulate one.

    When using a list as a stack, you can model the first-in-last-out behavior with append() as push and pop() as pop, as julio.alegria describes.

    If you want to use that list in a for-loop, but still have it behave in the FILO fashion you can reverse the order of the elements with this slice syntax: [::-1].

    Example:

    for element in stack[::-1]:
        print element
    

    If you’re using a custom class that implements a stack, just as long as it has __iter__() and next() methods defined you can use it in list comprehensions, for loops, or whatever.

    That way you can implement a custom iterator that removes items as it iterates over it, just as it should with a proper stack.

    Example:

    class Stack:
        def __init__(self):
            self.data = []
        def push(self,n):
            self.data.append(n)
        def pop(self):
            return self.data.pop()
        def __iter__(self):
            return self
        def next(self):
            if len(self.data)>0:
                return self.pop()
            else:
                raise StopIteration
    
    filo = Stack()
    filo.push(1)
    filo.push(2)
    filo.push(3)
    
    for i in filo:
        print i
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know if an instance implements a specific method. I could
What method do you use when you want to get performance data about specific
I just want that my program or method should run at specific date and
I want to list all methods of a type with a specific method signature.
I have a class that requires a specific method to be called before being
I am using the .eq() method to select a specific child element of a
I'm doing some specific signal analysis, and I am in need of a method
In my specific case: A WCF connection is established, but the only method with
How is it possible to call a client side javascript method after a specific
I do have something more specific in mind, however: Each web service method needs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.