python ==语法错误

| 我通过风车测试收到以下代码的语法错误。看起来不喜欢==我在做什么错的任何想法
counter = 0
while True:
    try:
        # some code goes here

    except:
        counter += 1
        # some code  goes here

        if counter == 3
            counter = 0
    
已邀请:
您有语法错误。在if语句后需要一个冒号,并且缩进可能是错误的(用粘贴的方式很难分辨出来)。此外,注释前面还带有#,而不是// 要正确改写:
while True:
    try:
        # some code goes here
    except:
        counter += 1

        #some code goes here 

        if counter == 3:
            counter = 0 
    
您在if语句后需要一个冒号。 编辑:修复代码格式。 我还看到您正在使用C风格的注释,Python不支持。 Python中的所有注释均以
#
开头。 另外,Python通过缩进来限制块。确保缩进块一致。     

要回复问题请先登录注册