If I have a list comprehension that is essentially this:
result = [function(i,j,k,l) for i in range(3) for j in range(3)
for k in range(3) for l in range(3)]
It does what I want, but it looks ugly. I'm fairly new to Python, but it seems that Python would have some kind of built-in to allow me to sum over all possible combinations of the 4 letters ijkl in a less cumbersome fashion. Is my intuition correct, or am I stuck staring at that long ugly line?

itertools.product(e.g. in your case,result = [function(*args) for args in itertools.product(range(3), repeat=4)]. This is a duplicate of lots of questions, but I admit it's sometimes hard to hit on the right phrase to search for. – DSM Jan 30 at 19:09