Re: having problem using xlrd
FYI, this question has been answered in python-excel group. Thanks. -- http://mail.python.org/mailman/listinfo/python-list
having problem using xlrd
Hello, I tried using xlrd to read an Excel file and kept getting this error: AttributeError: 'Book' object has no attribute 'mem' >>> import xlrd >>> p = r'C:\2.xls' >>> wb = xlrd.open_workbook(p) >>> wb.get_sheets() AttributeError: 'Book' object has no attribute 'mem' >>> wb.get_record_parts()
