Sorry for the simplicity of my questions, but is enumerate a way around using while loops
my while loop is this:
thanks
my while loop is this:
Code:
x = 1 >>> while x < len(rate): ... try: ... growth.append(rate[x]) ... x += 3 ... except IndexError: ... break ...
Comment