1

为什么这是语法错误?我该如何解决?

class Queue:

    #Queue is basicliy a List:
    def __init__(self):
        self.queue = []

    #add to the top of the list (the left side)
    def Enqueue(self, num):
        if isinstance(num, int):
            self.queue.append(num)

    #remove from the top of the list and return it to user
    def Dequeue(self):
        return self.queue.pop(0)

#this function gets inputs from user, and adds them to queue,
#until it gets 0.
def addToQueue(queue, num):
    num = input()
    while num != 0:
        queue.Enqueue(num)
        num = input()
4

1 回答 1

2

交互模式(带有>>>提示)一次只接受一个语句。您输入了两个要同时处理的内容。

输入类定义后,请务必添加一个额外的空白行,以便交互式提示知道您已完成。一旦系统提示您 a >>>,您就会知道它已为函数定义做好了准备。

您的其余代码看起来不错。快乐计算:-)

于 2012-04-28T22:32:46.677 回答