On Fri, May 20, 2016 at 7:16 AM jarod_v6--- via Tutor
wrote:
> Thanks s much for the help. I want to obtain table like this:
>
>
> >csv.writer(sys.stdout, delimiter="\t").writerows(table)
> >A100D33 D34 D35 D36 D37 D38 D39
> >A 5 0 ...
> >B
On Fri, May 20, 2016 at 8:42 AM Peter Otten <__pete...@web.de> wrote:
> jarod_v6--- via Tutor wrote:
> > I have tried the pandas way but unfortunately there is many duplicates .
>
> Please show your code in a small self-contained example,
> the output it produces, and what exact output you want in
Thanks again Alan for your help and patience. Your earlier suggestion
works; i just now realized that the output was indeed correct. Thanks
again--EK
___
Tutor maillist - Tutor@python.org
To unsubscribe or change subscription options:
https://mail.pytho
jarod_v6--- via Tutor wrote:
Please address your posts to the whole list, not me specifically. I might
read them all the same.
Thank you.
> Thanks s much for the help. I want to obtain table like this:
>
>
>>csv.writer(sys.stdout, delimiter="\t").writerows(table)
>>A100D33 D
Thanks s much for the help. I want to obtain table like this:
>csv.writer(sys.stdout, delimiter="\t").writerows(table)
>A100D33 D34 D35 D36 D37 D38 D39
>A 5 0 ...
>B 2 2 ...
>C 0 ..
>
I have tried the pandas way but unfortuna