diff --git a/README.md b/README.md index 7595bbc..5abd77e 100644 --- a/README.md +++ b/README.md @@ -3199,7 +3199,7 @@ y 2 ``` * **Methods ffill(), interpolate() and fillna() accept argument 'inplace' that defaults to False.** * **Last result has a hierarchical index. Use `'[key_1, key_2]'` to get its values.** -* **Keys, indexes and bools can't be tuples because `'obj[x, y]'` becomes `'obj[(x, y)]'`.** +* **Keys/indexes/bools can't be tuples because `'obj[x, y]'` is converted to `'obj[(x, y)]'`.** ### DataFrame **Table with labeled rows and columns.** diff --git a/index.html b/index.html index e7b89d9..e4af903 100644 --- a/index.html +++ b/index.html @@ -2614,7 +2614,7 @@ y 2

DataFrame

Table with labeled rows and columns.

>>> pd.DataFrame([[1, 2], [3, 4]], index=['a', 'b'], columns=['x', 'y'])
    x  y