Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions notebooks/numerical-computing-is-fun-1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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."
]
},
{
Expand Down Expand Up @@ -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..."
]
},
{
Expand Down