我正在使用 Iterator 类来生成几何级数。当我编译代码时,它运行了正确的次数,但我的迭代器的值并没有从第一个值改变。例如,如果我输入 5 作为项数,2 作为第一项,3 作为共同比率,程序将输出 2 五次。我搞砸了什么?
class geo_p:
def __init__(self, n):
self.a = int(input('Enter the first term:'))
self.d = int(input('Enter the common ratio:'))
self.i = self.a
self.n = n
def _iter_(self):
return self
def _next_(self):
i = 1
if i < self.n:
#sets curr = to the current term in progression
current = self.i
self.i = (self.i * (self.d**(i-1)))
i +=1
return current
else:
raise StopIteration()
y = geo_p
n = int(input('Enter the number of terms: '))
y.__init__(y, n)
print(y)
for i in range (n):
print(y._next_(y))