최근 테스트 과정에서 엑셀 사용 사례 데이터를 읽기 위해 파이썬을 사용해야 했기 때문에 xlrd 라이브러리를 이해하고 배우러 갔습니다. 여기서는 사용 중 엑셀 데이터를 읽는 것과 관련된 작업만 기록합니다.
xlrd 라이브러리 설치(권장 학습: Python 비디오 튜토리얼)
로컬 설치를 위해 xlrd 라이브러리 패키지를 다운로드하거나 pip 명령을 통해 설치할 수 있습니다. :
pip install xlrd
xlrd를 사용하여 Excel 데이터 가져오기
자세한 작업은 xlrd 라이브러리 운영 지침 문서를 참조하세요. Excel 데이터를 읽는 두 가지 방법은 다음과 같습니다.
Excel에서 시트 이름에 따라 데이터를 읽습니다.
import xlrd def readExcelDataByName(fileName, sheetName): table = None errorMsg = None try: data = xlrd.open_workbook(fileName) table = data.sheet_by_name(sheetName) except Exception, msg: errorMsg = msg return table, errorMsg
Excel의 시트 이름에 따라 일련번호 취득:
import xlrd def readExcelDataByIndex(fileName, sheetIndex): table = None errorMsg = "" try: data = xlrd.open_workbook(fileName) table = data.sheet_by_index(sheetIndex) except Exception, msg: errorMsg = msg return table, errorMsg
더 많은 Python 관련 기술 기사를 보려면 Python Tutorial 칼럼을 방문하여 알아보세요!
위 내용은 Python에서 Excel의 값을 읽는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!