From 1fb89da639ba0cfff1cfedf9f2055b6141430b15 Mon Sep 17 00:00:00 2001 From: Elizabeth Wickes Date: Sat, 3 Jun 2017 07:28:07 -0500 Subject: [PATCH] adding clarification about changing variable types Adding short sentence of clarification to reinforce that variables will change types. --- _episodes/03-types-conversion.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_episodes/03-types-conversion.md b/_episodes/03-types-conversion.md index 913eb96..29f44fb 100644 --- a/_episodes/03-types-conversion.md +++ b/_episodes/03-types-conversion.md @@ -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))