Skip to content

Commit

Permalink
ready, set, go!
Browse files Browse the repository at this point in the history
  • Loading branch information
ShashwatAgrawal20 committed Feb 13, 2025
1 parent b601a0c commit 80011b6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pandas/io/excel/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
Strings are used for sheet names. Integers are used in zero-indexed
sheet positions (chart sheets do not count as a sheet position).
Lists of strings/integers are used to request multiple sheets.
Specify ``None`` to get all worksheets.
When ``None``, will return a dictionary containing DataFrames for each sheet.
Available cases:
Expand All @@ -124,7 +124,7 @@
* ``"Sheet1"``: Load sheet with name "Sheet1"
* ``[0, 1, "Sheet5"]``: Load first, second and sheet named "Sheet5"
as a dict of `DataFrame`
* ``None``: All worksheets.
* ``None``: Returns a dictionary containing DataFrames for each sheet..
header : int, list of int, default 0
Row (0-indexed) to use for the column labels of the parsed
Expand Down Expand Up @@ -1649,7 +1649,8 @@ def parse(
Strings are used for sheet names. Integers are used in zero-indexed
sheet positions (chart sheets do not count as a sheet position).
Lists of strings/integers are used to request multiple sheets.
Specify ``None`` to get all worksheets.
When ``None``, will return a dictionary containing DataFrames for
each sheet.
header : int, list of int, default 0
Row (0-indexed) to use for the column labels of the parsed
DataFrame. If a list of integers is passed those row positions will
Expand Down

0 comments on commit 80011b6

Please sign in to comment.