python에서 excel 파일의 모든sheet 이름을 가져옵니다.

1274 단어
excel 파일의sheet가 비교적 많을 때, 이 때 모든sheet의 이름을 가져와야 합니다. 
xl = pd.ExcelFile('foo.xls')

xl.sheet_names  # see all sheet names

xl.parse(sheet_name)  # read a specific sheet to DataFrame

 
모든 sheet를 직접 읽고 sheetname을 None로 설정할 수도 있습니다.이때 얻은 것은dict 결과이다.
 df = pandas.read_excel("/yourPath/FileName.xlsx", None);

"df"are all sheets as a dictionary of DataFrames, you can verify it by run this:
df.keys()

다음으로 전송:https://www.cnblogs.com/qingyuanjushi/p/8449151.html

좋은 웹페이지 즐겨찾기