Re: How to input values of the matrix from keyboard in python

2010-08-11 Thread Chris Rebert
On Wed, Aug 11, 2010 at 12:06 PM, Chris Rebert wrote: > On Wed, Aug 11, 2010 at 11:43 AM, Pramod wrote: >> Hi >> >>   I want to know the how we input values into the matrix (N*N size) >> from keyboard in python, >> >> Here I wrote Matrix programe in C++ >> >> This  asks values from key board and

Re: How to input values of the matrix from keyboard in python

2010-08-11 Thread MRAB
Pramod wrote: Hi I want to know the how we input values into the matrix (N*N size) from keyboard in python, Here I wrote Matrix programe in C++ This asks values from key board and print on the console N*N matrix ; [snip] Read from the keyboard using raw_input() (in Python 2, or input()

Re: How to input values of the matrix from keyboard in python

2010-08-11 Thread Chris Rebert
On Wed, Aug 11, 2010 at 11:43 AM, Pramod wrote: > Hi > >   I want to know the how we input values into the matrix (N*N size) > from keyboard in python, > > Here I wrote Matrix programe in C++ > > This  asks values from key board and print on the console N*N matrix ; > > Thanks in advance > >