Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #105178 > unrolled thread

file -SAS

Started byVal Krem <valkrem@yahoo.com>
First post2016-03-18 05:02 +0000
Last post2016-03-18 05:02 +0000
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  file -SAS Val Krem <valkrem@yahoo.com> - 2016-03-18 05:02 +0000

#105178 — file -SAS

FromVal Krem <valkrem@yahoo.com>
Date2016-03-18 05:02 +0000
Subjectfile -SAS
Message-ID<mailman.300.1458277709.12893.python-list@python.org>
Hi all,

I am trying to read sas7bdat file using the following



from sas7bdat import SAS7BDAT

with SAS7BDAT('test.sas7bdat') as f:
for row in f:
         print row   ### I want print the first 10 row. how can I do that?


I got error message of 


from sas7bdat import SAS7BDAT
ImportError: No module named sas7bdat

What did I miss?
Val

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web