Rewrite the following while loop into for loop.
i=88 while(i>=8): print i i- = 8
for i in range(88, 7, -8): print(i)