diff --git a/your-first-python-program.html b/your-first-python-program.html index 7a4f443..e3444d1 100644 --- a/your-first-python-program.html +++ b/your-first-python-program.html @@ -82,7 +82,7 @@ if __name__ == "__main__":
'12' and the integer 3 to get the string '123', then treat that as the integer 123, all without any explicit conversion. [FIXME double-check this]
+'12' and the integer 3 to get the string '123', then treat that as the integer 123, all without any explicit conversion.
So Python is both dynamically typed (because it doesn't use explicit datatype declarations) and strongly typed (because once a variable has a datatype, it actually matters).