surya k wrote:
> Actually my programming language is C.. learning python.
>
> I'm trying to write sudoku program for which I need to take input.
> This is what I did merely
>
> *list = []
> for i in range (0,4) :
> for j in range (0,4) :
>list[i][j].append (" int (raw_input("En
On Mon, Sep 26, 2011 at 8:46 AM, surya k wrote:
> Hi,
>
> Actually my programming language is C.. learning python.
>
> I'm trying to write sudoku program for which I need to take input.
> This is what I did merely
>
> *list = []
> for i in range (0,4) :
> for j in range (0,4) :
>
Hi,
Actually my programming language is C.. learning python.
I'm trying to write sudoku program for which I need to take input.
This is what I did merely
*list = []
for i in range (0,4) :
for j in range (0,4) :
list[i][j].append (" int (raw_input("Enter") ) )
*
This is complete