Python预测冒号

时间:2017-07-16 01:28:53

标签: python syntax

我在一个名为test1.py的文件中设置了一个非常简单的测试,但它似乎给了我一个冒号预期的错误,或者当我运行它时它表示无效的语法。     class test1:

    def counter(self):
        while loopcount < 1000:
            loopcount = loopcount + 1
        if loopcount 1000:
            print(loopcount)

1 个答案:

答案 0 :(得分:1)

让我们试一下这段代码,对loopcountif语句以及test1类定义进行一些调整

class Test1(object):

    def counter(self, loopcount):
        while loopcount < 1000:
            loopcount = loopcount + 1
        if loopcount == 1000:
            print(loopcount)

my = Test1()
my.counter(100)