Currently if I want to iterate 1 through n I would likely use the following method:
1
n
for _ in rang
for i in range(n): print(i+1)
This will output:
1 2 ... n