大家讲道理2017-04-18 10:07:24
You can use closures to achieve it. The general idea is as follows:
def out():
class data:
count = 0
def inner(l):
for i in l:
data.count += 1
print data.count
return inner
f = out()
f([1,2,3])
f([23,34,3,43,4])
can be marked with a global variable
巴扎黑2017-04-18 10:07:24
Because the framework processes the returned data, changing it to a closure format seems like a big step. For this requirement, I mainly want to reduce the frequency of calls through count. Now I use another method instead, which is to use the current time as a reference. This is equivalent to a global variable.