Here's for loop I'm trying to work
for page in range(0, 27800, 20):
print(f'page {page} =====')
If current page is '2', then this code may print out page number as '20'. If current page is '5', code will print '80'.
I want my code to print actual page numbers such as 1,2,3,4,5,6....(not those parameter numbers)
So How I can do that?