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 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?
How do I make a list without 0 being a starting number? I would like to start with number 1.
I tried this: enumerate(sequence[, start=0])
but it send me error because of = in brackets