Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
for s in stocks_list:
    print s

how do I know what "position" s is in? So that I can do stocks_list[4] in the future?

share|improve this question

3 Answers

up vote 7 down vote accepted
for index, s in enumerate(stocks_list):
    print index, s
share|improve this answer

If you know what you're looking for ahead of time you can use the index method:

>>> stocks_list = ['AAPL', 'MSFT', 'GOOG']
>>> stocks_list.index('MSFT')
1
>>> stocks_list.index('GOOG')
2
share|improve this answer
[x for x in range(len(stocks_list)) if stocks_list[x]=='MSFT']
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.