Skip to content

Commit a0de3b6

Browse files
authored
minor: double spaces to separate
Finished lines with double spaces in Selection Challenges, so they display in different lines
1 parent 220aaec commit a0de3b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

_extras/guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -164,9 +164,9 @@ Tip: use `.head()` method throughout this lesson to keep your display neater for
164164

165165
* What happens when you type:
166166

167-
`surveys_df[0:3]`
168-
`surveys_df[:5]` slicing from first element makes 0 redundant
169-
`surveys_df[-1:]` you can count backwards
167+
`surveys_df[0:3]`
168+
`surveys_df[:5]` slicing from first element makes 0 redundant
169+
`surveys_df[-1:]` you can count backwards
170170

171171
*Suggestion*: You can also select every Nth row: `surveys_df[1:10:2]`. So, how to interpret `surveys_df[::-1]`?
172172

0 commit comments

Comments
 (0)