What you are looking for is the exec command. Like:
a0 = 1
exec('print a%s'%0)
So, without having tested it carefully,
for i in arange(0,4,1):
exec('print a%s[0][2]'%i)
probably works
But the easiest way would still be to not make 80 different a's but put all data in one big numpy array ;)