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 86063
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T22:11:15+00:00 2026-05-10T22:11:15+00:00

I am iterating over a list and I want to print out the index

  • 0

I am iterating over a list and I want to print out the index of the item if it meets a certain condition. How would I do this?

Example:

testlist = [1,2,3,5,3,1,2,1,6] for item in testlist:     if item == 1:         print position 
  • 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. 2026-05-10T22:11:15+00:00Added an answer on May 10, 2026 at 10:11 pm

    Hmmm. There was an answer with a list comprehension here, but it’s disappeared.

    Here:

     [i for i,x in enumerate(testlist) if x == 1] 

    Example:

    >>> testlist [1, 2, 3, 5, 3, 1, 2, 1, 6] >>> [i for i,x in enumerate(testlist) if x == 1] [0, 5, 7] 

    Update:

    Okay, you want a generator expression, we’ll have a generator expression. Here’s the list comprehension again, in a for loop:

    >>> for i in [i for i,x in enumerate(testlist) if x == 1]: ...     print i ...  0 5 7 

    Now we’ll construct a generator…

    >>> (i for i,x in enumerate(testlist) if x == 1) <generator object at 0x6b508> >>> for i in (i for i,x in enumerate(testlist) if x == 1): ...     print i ...  0 5 7 

    and niftily enough, we can assign that to a variable, and use it from there…

    >>> gen = (i for i,x in enumerate(testlist) if x == 1) >>> for i in gen: print i ...  0 5 7 

    And to think I used to write FORTRAN.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 66k
  • Answers 66k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer There is several ways to approach this issue. But let… May 11, 2026 at 11:31 am
  • added an answer Use :order => 'criteria' for anything simple that can be… May 11, 2026 at 11:31 am
  • added an answer Foo should implement the INotifyPropertyChanged and INotifyPropertyChanging interfaces. public void… May 11, 2026 at 11:31 am

Related Questions

I am iterating over a list and I want to print out the index
If I am iterating over each file using : @echo off FOR %%f IN
I am interacting with an Oracle DB using SQL over an ODBC connection. Is
I'm working on a winform app and am interating through a checkboxlist to see
I am integrating growl into my Objective-C app. However If I build and run
I am interacting with a web server using a desktop client program in C#
I am having trouble integrating two products, one of which is mine and they
I am working on localization for a asp.net application that consists of several projects.
I am looking for good methods of manipulating HTML in PHP. For example, the
I am aware that in .NET there are three timer types (see Comparing the

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.