|
115 | 115 | Strings are used for sheet names. Integers are used in zero-indexed
|
116 | 116 | sheet positions (chart sheets do not count as a sheet position).
|
117 | 117 | Lists of strings/integers are used to request multiple sheets.
|
118 |
| - Specify ``None`` to get all worksheets. |
| 118 | + When ``None``, will return a dictionary containing DataFrames for each sheet. |
119 | 119 |
|
120 | 120 | Available cases:
|
121 | 121 |
|
|
124 | 124 | * ``"Sheet1"``: Load sheet with name "Sheet1"
|
125 | 125 | * ``[0, 1, "Sheet5"]``: Load first, second and sheet named "Sheet5"
|
126 | 126 | as a dict of `DataFrame`
|
127 |
| - * ``None``: All worksheets. |
| 127 | + * ``None``: Returns a dictionary containing DataFrames for each sheet.. |
128 | 128 |
|
129 | 129 | header : int, list of int, default 0
|
130 | 130 | Row (0-indexed) to use for the column labels of the parsed
|
@@ -1649,7 +1649,8 @@ def parse(
|
1649 | 1649 | Strings are used for sheet names. Integers are used in zero-indexed
|
1650 | 1650 | sheet positions (chart sheets do not count as a sheet position).
|
1651 | 1651 | Lists of strings/integers are used to request multiple sheets.
|
1652 |
| - Specify ``None`` to get all worksheets. |
| 1652 | + When ``None``, will return a dictionary containing DataFrames for |
| 1653 | + each sheet. |
1653 | 1654 | header : int, list of int, default 0
|
1654 | 1655 | Row (0-indexed) to use for the column labels of the parsed
|
1655 | 1656 | DataFrame. If a list of integers is passed those row positions will
|
|
0 commit comments