Re: iterate to make multiple variables?

2009-04-21 Thread john
On Apr 19, 11:11 pm, Tairic ala...@gmail.com 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

Re: iterate to make multiple variables?

2009-04-21 Thread john
On Apr 19, 11:11 pm, Tairic ala...@gmail.com 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

iterate to make multiple variables?

2009-04-20 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([])

Re: iterate to make multiple variables?

2009-04-20 Thread Mark Tolonen
Tairic ala...@gmail.com 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

Re: iterate to make multiple variables?

2009-04-20 Thread Pascal Chambon
Mark Tolonen a écrit : Tairic ala...@gmail.com 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