From 5459e801d521e06746db968bd1072fe307f435c7 Mon Sep 17 00:00:00 2001 From: "Carlos A. Iglesias" Date: Thu, 13 Feb 2020 17:56:36 +0100 Subject: [PATCH] Update 1_7_Variables.ipynb --- python/1_7_Variables.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/1_7_Variables.ipynb b/python/1_7_Variables.ipynb index 9a7aa3b..a6629c0 100644 --- a/python/1_7_Variables.ipynb +++ b/python/1_7_Variables.ipynb @@ -66,7 +66,7 @@ "\n", "This means:\n", "* ** dynamically typed**: variables do not declare a static type (as in Java int a = 2;). Variables have no type themselves, they are just names that hold a reference to some object. The type of the variable is changed dynamically when you change the type of the assigned data object. \n", - "* **strongly typed**: the interpreter tracks variable types. There is no explicit type conversion. For example, in Javascript we can " + "* **strongly typed**: the interpreter tracks variable types. There is no implicit type conversion. This means that all the type variables should be converted manually, preventing from unexpected behaviour. " ] }, {