Skip to content

Commit

Permalink
adding clarification about changing variable types
Browse files Browse the repository at this point in the history
Adding short sentence of clarification to reinforce that variables will change types.
  • Loading branch information
elliewix authored Jun 3, 2017
1 parent 8f55291 commit 1fb89da
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions _episodes/03-types-conversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ keypoints:
* Use the built-in function `type` to find out what type a value has.
* Works on variables as well.
* But remember: the *value* has the type --- the *variable* is just a label.
* When you change the value of a variable to a new data type, the results of `print(type(your_variable))` will change accordingly.

~~~
print(type(52))
Expand Down

0 comments on commit 1fb89da

Please sign in to comment.