Re: iterate to make multiple variables?

2009-04-20 Thread john
On Apr 19, 11:11 pm, Tairic wrote: > Hi, I'm somewhat new to programming and especially to python. Today I > was attempting to make a sudoku-solver, and I wanted to put numbers > into sets call box1, box2, ... box9, so that I could check new values > against the boxes > > I ended up declaring the

Re: iterate to make multiple variables?

2009-04-20 Thread john
On Apr 19, 11:11 pm, Tairic wrote: > Hi, I'm somewhat new to programming and especially to python. Today I > was attempting to make a sudoku-solver, and I wanted to put numbers > into sets call box1, box2, ... box9, so that I could check new values > against the boxes > > I ended up declaring the

Re: iterate to make multiple variables?

2009-04-20 Thread Pascal Chambon
Mark Tolonen a écrit : "Tairic" wrote in message news:95ea7bdf-2ae8-4e5e-a613-37169bb36...@w35g2000prg.googlegroups.com... Hi, I'm somewhat new to programming and especially to python. Today I was attempting to make a sudoku-solver, and I wanted to put numbers into sets call box1, box2, ...

Re: iterate to make multiple variables?

2009-04-19 Thread Mark Tolonen
"Tairic" wrote in message news:95ea7bdf-2ae8-4e5e-a613-37169bb36...@w35g2000prg.googlegroups.com... Hi, I'm somewhat new to programming and especially to python. Today I was attempting to make a sudoku-solver, and I wanted to put numbers into sets call box1, box2, ... box9, so that I could che

iterate to make multiple variables?

2009-04-19 Thread Tairic
Hi, I'm somewhat new to programming and especially to python. Today I was attempting to make a sudoku-solver, and I wanted to put numbers into sets call box1, box2, ... box9, so that I could check new values against the boxes I ended up declaring the boxes like this box1 = set([]) box2 = set([]) .