Skip to content

Commit fad1ace

Browse files
authored
01-intro.md: fix the solution in the 'Seeing Data Types' exercise (#960)
Without the `print` function, Jupyter notebook displays the output of the last command only.
1 parent 0acf07e commit fad1ace

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_episodes/01-intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,9 +295,9 @@ stuck on it](../fig/python-sticky-note-variables-03.svg)
295295
>
296296
> > ## Solution
297297
> > ~~~
298-
> > type(planet)
299-
> > type(apples)
300-
> > type(distance)
298+
> > print(type(planet))
299+
> > print(type(apples))
300+
> > print(type(distance))
301301
> > ~~~
302302
> > {: .language-python}
303303
> >

0 commit comments

Comments
 (0)