This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pythonmeister
Recipients Richard.Christen@unice.fr, loewis, pythonmeister
Date 2007-09-10.14:32:23
SpamBayes Score 0.025855325
Marked as misclassified No
Message-id <1189434744.03.0.4973264655.issue1141@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, this way:

import sys
print(sys.version_info)
import time 
print (time.strftime('%Y-%m-%d %H:%M:%S'))
fichin=open(r'D:\pythons\16s\total_gb_161_16S.gb')
start = time.time()
for i,li in enumerate(fichin):
    if i%1000000==0 and i>0: 
        print (i,time.time()-start)
fichin.close()
print(i)
print(time.time()-start)
History
Date User Action Args
2007-09-10 14:32:24pythonmeistersetspambayes_score: 0.0258553 -> 0.025855325
recipients: + pythonmeister, loewis, Richard.Christen@unice.fr
2007-09-10 14:32:24pythonmeistersetspambayes_score: 0.0258553 -> 0.0258553
messageid: <1189434744.03.0.4973264655.issue1141@psf.upfronthosting.co.za>
2007-09-10 14:32:24pythonmeisterlinkissue1141 messages
2007-09-10 14:32:23pythonmeistercreate