我的代码是:
class New(Server):
noOfCl = 0
def onConnect(self, socket):
print "Client connected"
print (noOfCl+=1)
我收到以下错误:UnboundLocalError: local variable 'noOfCl' referenced before assignment.
据我了解,我在引用它之前声明了 noOfCl。有人对我做错了什么有任何想法吗?谢谢