I have functions like this:
def activate_field_1():
print 1
def activate_field_2():
print 2
def activate_field_3():
print 3
How do I define activate_field_[x]
for x=1:10
, without typing out each one of them? I'd much rather pass a parameter, of course, but for my purposes this is not possible.