Skip to content

Commit

Permalink
Merge pull request #59 from amandakube/draft2
Browse files Browse the repository at this point in the history
move assignments and fix links
  • Loading branch information
amandakube committed Sep 27, 2023
2 parents 2061f96 + ecd1e8b commit c30c977
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions textbook/03/3/DataTypes.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"source": [
"## Booleans\n",
"\n",
"Booleans are a data type that consist of two possible outcomes: `True` or `False`. Under the hood, these values take on a binary value, where `True` is equal to 1 and `False` is equal to 0. Booleans are very commonly used with comparison operators (discussed more in [Section 3.4](../../03/4/Comparisons.ipynb)), and because they also can have a numeric meaning, they can be used in calculations as well. Let's start with a simple example of a Boolean."
"Booleans are a data type that consist of two possible outcomes: `True` or `False`. Under the hood, these values take on a binary value, where `True` is equal to 1 and `False` is equal to 0. Booleans are very commonly used with comparison operators (discussed more in [Section 3.4](../../03/4/Comparison.ipynb)), and because they also can have a numeric meaning, they can be used in calculations as well. Let's start with a simple example of a Boolean."
]
},
{
Expand Down Expand Up @@ -109,7 +109,7 @@
"id": "37df7040",
"metadata": {},
"source": [
"Python has built-in **functions** that use values and variables as input to perform a task and produce an output. We have already used some basic functions, such as the `print()` function, and we will learn about a few more that are associated with datatypes. Built-in functions will be further discussed in section [Section 3.4](../../03/5/IntroFunctions.ipynb). \n",
"Python has built-in **functions** that use values and variables as input to perform a task and produce an output. We have already used some basic functions, such as the `print()` function, and we will learn about a few more that are associated with datatypes. Built-in functions will be further discussed in section [Section 3.5](../../03/5/IntroFunctions.ipynb). \n",
"\n",
"For now, we will use a few basic functions associated with data types. The `bool()` function converts an input (i.e. a numeric value, string, or even data structures) to a boolean value."
]
Expand Down
File renamed without changes.

0 comments on commit c30c977

Please sign in to comment.