can we make a trace table in python code example
Example: python trace table
counter = 1
while counter < 11:
print(counter, end = ‘ ‘)
counter=(counter + 1)
counter = 1
while counter < 11:
print(counter, end = ‘ ‘)
counter=(counter + 1)