<div dir="ltr">I am having trouble figuring out a solution after a couple hours now of playing with the code. I'm trying to make a latin square using the code below:<div><br></div><div><div>scaleorder = int(raw_input('Please enter a number for an n*n square: '))</div>
<div><br></div><div><br></div><div>topleft = int(raw_input('Please enter the top left number for the square: '))</div><div><br></div><div>firstrow = range((topleft),scaleorder+1)</div><div><br></div><div>count = 0</div>
<div><br></div><div>while count < 8:</div><div>    for i in firstrow:</div><div>        print i</div><div>        count += 1</div><div>        firstrow[i+1]</div></div><div><br></div><div><br></div><div>-----------------------------------------------------------------------</div>
<div><br></div><div style>It seemed like I could make the for loop work by doing something like this:</div><div style><br></div><div style><div>for i in firstrow:</div><div>        print i, i+2</div><div><br></div><div><br>
</div><div style>but  that obviously is not a solution either. Any ideas?</div><div style><br></div><div style>Thanks,</div><div style>Brandon</div></div></div>