We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f53967e + a0de3b6 commit 4064451Copy full SHA for 4064451
1 file changed
_extras/guide.md
@@ -164,9 +164,9 @@ Tip: use `.head()` method throughout this lesson to keep your display neater for
164
165
* What happens when you type:
166
167
- `surveys_df[0:3]`
168
- `surveys_df[:5]` slicing from first element makes 0 redundant
169
- `surveys_df[-1:]` you can count backwards
+ `surveys_df[0:3]`
+ `surveys_df[:5]` slicing from first element makes 0 redundant
+ `surveys_df[-1:]` you can count backwards
170
171
*Suggestion*: You can also select every Nth row: `surveys_df[1:10:2]`. So, how to interpret `surveys_df[::-1]`?
172
0 commit comments