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?
for index, s in enumerate(stocks_list): print index, s
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
[x for x in range(len(stocks_list)) if stocks_list[x]=='MSFT']
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
3 years ago
viewed
4839 times
active
7 months ago