I would like to specify range restrictions for multiple variables in Python code.
I have tried troubleshooting on pythontutor.com to no success.
for i in range (0,5), j in range (1,2):
d=(abs(a[i]-(c+j)/(s+1)))
z.append(d)
Error:
NameError: name 'j' is not defined