Im trying to use a variable value in the range() in for loop as shown in the below code
n = int((length + 15) / 16); n is being calculated and typecasted to int
for j in range(n)
For which im getting sytax error. could anyone tell how exactly to solve this