I'm working in python and currently have the following code:
list = []
for a in range(100):
for b in range(100):
for c in range(100):
list.append(run(a,b,c))
where run(a,b,c) returns an integer (for example, it could multiply the three numbers together). Is there a faster way to either loop over these numbers or use a map function?
Thanks :)