diff --git a/content/01-python-basics/python-datatypes.ipynb b/content/01-python-basics/python-datatypes.ipynb index 534891b..125a4fd 100644 --- a/content/01-python-basics/python-datatypes.ipynb +++ b/content/01-python-basics/python-datatypes.ipynb @@ -92,11 +92,13 @@ }, { "cell_type": "markdown", - "metadata": {}, + "metadata": { + "user_expressions": [] + }, "source": [ - "Note: integer division is one place where python 2 and python 3 different\n", + "Note: integer division is one place where python differs from many other languages/\n", " \n", - "In python 3.x, dividing 2 integers results in a float. In python 2.x, dividing 2 integers results in an integer. The latter is consistent with many strongly-typed programming languages (like Fortran or C), since the data-type of the result is the same as the inputs, but the former is more inline with our expectations" + "In python, dividing 2 integers results in a float. In most other languages (like Fortran, C, C++), dividing 2 integers results in an integer. " ] }, { @@ -1445,7 +1447,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.9" + "version": "3.11.3" } }, "nbformat": 4,