diff --git a/notebooks/numerical-computing-is-fun-1.ipynb b/notebooks/numerical-computing-is-fun-1.ipynb index b9f322f..ce9b146 100644 --- a/notebooks/numerical-computing-is-fun-1.ipynb +++ b/notebooks/numerical-computing-is-fun-1.ipynb @@ -359,7 +359,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Ah, that's better. Why we get the surprising result in the first example, is because both of the numbers are ints and ints do not have the property of adding decimnals. Only float know how to do this. Python makes this easy for us to handle; as long as we add the decimal ourselves, Python will assume the numbers as floats and perform the operation accordingly. Floats are also called 'floating point' and ints are called 'integers'. It's enough to get a floating point product if just one value in an equation is a float. Let's try a few examples to highlight this." + "Ah, that's better. Why we get the surprising result in the first example, is because both of the numbers are ints and ints do not have the property of adding decimals. Only float know how to do this. Python makes this easy for us to handle; as long as we add the decimal ourselves, Python will assume the numbers as floats and perform the operation accordingly. Floats are also called 'floating point' and ints are called 'integers'. It's enough to get a floating point product if just one value in an equation is a float. Let's try a few examples to highlight this." ] }, { @@ -619,7 +619,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "As you can see, we have slightly changed the way the function is defined. Now instead of having empty parenthesis following the name of the function, we are declaring data in there. This way data becomes a 'parameter' also called 'argument', which is really just a fancy word for somethign we input to the function, so the function can process it. Let's try it first..." + "As you can see, we have slightly changed the way the function is defined. Now instead of having empty parenthesis following the name of the function, we are declaring data in there. This way data becomes a 'parameter' also called 'argument', which is really just a fancy word for something we input to the function, so the function can process it. Let's try it first..." ] }, {