Consider the following Python function:
def calc(x,y): z=0 for i in range(x): z=z+y return z
Identify one programming technique that could be used to improve the readability of this code.