Skip to content

Commit 12f4fa2

Browse files
committed
update
1 parent 18fecd2 commit 12f4fa2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

_episodes/04-more-dataframes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ surveys_df[0:3]
187187
> ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J']
188188
> ~~~
189189
> {: .output}
190-
>
190+
> <br>
191191
> Return the values `A` through `E`:
192192
>
193193
> ~~~
@@ -199,7 +199,7 @@ surveys_df[0:3]
199199
> ['A', 'B', 'C', 'D', 'E']
200200
> ~~~
201201
> {: .output}
202-
>
202+
> <br>
203203
> Return the list starting at `E` through to the end:
204204
>
205205
> ~~~
@@ -211,7 +211,7 @@ surveys_df[0:3]
211211
> ['E', 'F', 'G', 'H', 'I', 'J']
212212
> ~~~
213213
> {: .output}
214-
>
214+
> <br>
215215
> Return the first 4 letters in the list
216216
> (Note that this is the same as `x[0:4]`):
217217
>
@@ -224,7 +224,7 @@ surveys_df[0:3]
224224
> ['A', 'B', 'C', 'D']
225225
> ~~~
226226
> {: .output}
227-
>
227+
> <br>
228228
> Return the _last_ letter in the list:
229229
>
230230
> ~~~
@@ -236,7 +236,7 @@ surveys_df[0:3]
236236
> 'J'
237237
> ~~~
238238
> {: .output}
239-
>
239+
> <br>
240240
> The slice syntax includes a third component called the _step_. Where
241241
> `x[start:stop:step]` returns the list from the `start` index for every `step` up to the index
242242
> before `stop`. The example below gives us every third letter in the list starting from `0`

0 commit comments

Comments
 (0)