"Martin P. Hellwig" wrote in message
news:hnbq8q$vg...@news.eternal-september.org...
> On 03/11/10 22:08, Cal Who wrote:
>
>> Thanks, that helped a lot.
>>
>> I'm having trouble knowing what to search for to find documenatation. For
>> example, is print a Python command, a numpy command or a j
On 03/11/10 22:08, Cal Who wrote:
Thanks, that helped a lot.
I'm having trouble knowing what to search for to find documenatation. For
example, is print a Python command, a numpy command or a java command?
I like to read the documentation even if the command is working for me.
Thanks again
"Robert Kern" wrote in message
news:mailman.631.1268335358.23598.python-l...@python.org...
> On 2010-03-11 13:01 PM, Cal Who wrote:
>> data = readdata( 'data/input.dat', delimiter = ',' )
>>
>> input = data[:, :9]#nine data columns
>>
>>
>>
>> Where can I find documentation for the
>>
>> data[:
On 2010-03-11 13:01 PM, Cal Who wrote:
data = readdata( 'data/input.dat', delimiter = ',' )
input = data[:, :9]#nine data columns
Where can I find documentation for the
data[:,9]
in the code above.
Been looking and found many examples but would like to know the definition.
When asking q
data = readdata( 'data/input.dat', delimiter = ',' )
input = data[:, :9]#nine data columns
Where can I find documentation for the
data[:,9]
in the code above.
Been looking and found many examples but would like to know the definition.
I need to skip the first column and then read 9
I wou