在python中使用生成器的StopIteration错误

时间:2016-04-14 11:13:31

标签: python-3.x iteration generator stopiteration

错误要求一个已经存在的StopIteration语句,我可能刚刚将它放在错误的代码段中。我找不到任何类似于此的发电机的用途。错误:

Traceback (most recent call last):
  File "W:\My Data Sources\My Documents\A level\Computer Science\Python\Tasks\Painting estimate copy wout gen.py", line 102, in <module>
    area()
  File "W:\My Data Sources\My Documents\A level\Computer Science\Python\Tasks\Painting estimate copy wout gen.py", line 71, in area
    sub2()
  File "W:\My Data Sources\My Documents\A level\Computer Science\Python\Tasks\Painting estimate copy wout gen.py", line 48, in sub2
    area()
  File "W:\My Data Sources\My Documents\A level\Computer Science\Python\Tasks\Painting estimate copy wout gen.py", line 67, in area
    print("Please enter the dimensions of each wall in your",next(iter1),"when prompted.")
StopIteration
RoomDetails = []
wallDimensions = []
counter = 0


def rooms():


    RoomNum = str(input("Please enter the name of the room you require  painting (e.g. 'lounge'): "))

    RoomDetails.append(RoomNum)

    inp1 = input("Have you entered all the rooms you need to decorate? Y or N?: ")

    if inp1 == 'y':
    print("")


    elif inp1 == 'Y':
        print("")

    elif inp1 == 'n':
        print("These are the rooms you have entered thus far: ", RoomDetails)
        rooms()

    elif inp1 == 'N':
        print("These are the rooms you have entered thus far: ", RoomDetails)
        rooms()


def sub():

    wallH = float(input("What's the hieght of this wall? (In meters): "))
    wallW = float(input("What's the width of this wall? (In meters): "))

    wallD = wallH * wallW

    wallDimensions.append(wallD)


def sub2():

    global counter

    var3 = input("Have you entered the dimensions of all the walls in this room that require painting? Y or N?")
    if var3 == 'y':
        area()
    elif var3 == 'Y':
        area()
    elif var3 == 'n':
        sub()
        sub2()
    elif var3 == 'N':
        sub()
        sub2()


global iter1
iter1 = iter(RoomDetails)

def area():
    global counter
    counter = counter + 1


    print("Please enter the dimensions of each wall in your",next(iter1),"when prompted.")

   sub()

   sub2()

    if counter < len(RoomDetails):
        area()
    elif iter1 == RoomDetails[-1]:
        raise StopIteration



def calc():

    var4 = float
    var4 = sum(wallDimensions)
    #£4.24 per square metre for painting
   var5 = float
   var5 = 4.24
   finalAmount = var4 * var5
   print("The total cost to paint",RoomDetails,"will be £",finalAmount)
   input("...")



   print("Welcome to the evaluation")


   CustNum = input("Please enter your customer number: ")

   DateEst = input("Please enter the date of your estimate: ")

   rooms()

   area()

    calc()

1 个答案:

答案 0 :(得分:1)

您正在将iterator与列表元素进行比较:

iter1 == RoomDetails[-1]:

但是迭代器不会“成为”事物 - 它更像是工具而不是价值。例如,列表的迭代器如下所示:

>>> iter([])
<listiterator object at 0x6ffffdaf090>

因此,除非您的其他对象是相同的迭代器,否则它将始终返回False,因此永远不会引发ValueError。尝试使测试更简单,它应该工作。

此外,您还没有真正创建迭代器 - 您需要生成值以使您的函数成为生成器表达式。为了实现目标,返回列表或简单的东西可能是值得的吗?通常,迭代器会产生area()的返回值:

if counter < len(RoomDetails):
    yield area()

因为你只是简单地调用area(),而不是迭代它,所以无论如何你都不需要它作为迭代器。

相关问题