Hello. First of all i'm compete newbie in the python. And second i was wondering for some time what does the value 'i" do in python or is it a value at all? I'm sorry if i'm pre-posting a question that have been answered already.
This is the example :
def drawBoard(board):
hline = ' '
for i in range(1, 6):
hline += (' ' * 9) + str(i)
print(hline)
print(' ' + ('0123456789' * 6))
print()