变量定义bug

时间:2015-09-28 19:09:34

标签: python

我遇到运行此代码的问题。这是我收到的错误

  

回溯(最近一次调用最后一次):文件" C:\ Windows \ System32 \ python   在counter_c + 1

中测试1.py",第53行      

NameError:name   ' counter_c'未定义

我认为python将其解释为字符串或布尔值。有没有人有建议?

这是我的代码:

while (True == end_command):

    c_l_i = input(">>: ")

    for mlist in master_list:

        inList = ['help', 'other_help']

        if (c_l_i in eval (mlist)):

            counter_c = 0

            inList[0] = "true"

            counter_c + 1

            print (inList)

            #find_in(c_l_i)

        else:

            inList[0] = "false"

            counter_c + 1

            print (inList)

print (inList)

0 个答案:

没有答案