Streamline previous content

This commit is contained in:
Alexander Hess 2019-10-30 11:04:59 +01:00
commit 04d53956a3
11 changed files with 1097 additions and 410 deletions

View file

@ -5,7 +5,7 @@
"metadata": {},
"source": [
"\n",
"# Chapter 6: Text"
"# Chapter 6: Bytes & Text"
]
},
{
@ -54,7 +54,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**Q2**: What is a direct consequence of the `str` type's property of being **ordered**? What operations could we *not* do with it if it were *unordered*?"
"**Q2**: What is a direct consequence of the `str` type's property of being an **ordered** sequence? What operations could we *not* do with it if it were *unordered*?"
]
},
{
@ -87,7 +87,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**Q4**: Describe in your own words what we mean with **string interpolation**!"
"**Q4**: Describe in your own words what we mean by **string interpolation**!"
]
},
{
@ -115,7 +115,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**Q5**: **Triple-double** quotes `\"\"\"` and **triple-single** quotes `'''` create a *new* object of type `text` that model so-called **multi-line strings**."
"**Q5**: **Triple-double** quotes `\"\"\"` and **triple-single** quotes `'''` create a *new* object of type `text` that models so-called **multi-line strings**."
]
},
{
@ -143,7 +143,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"**Q7**: Indexing into a `str` object with a *negative* index **fails silently**: It does *not* raise an error but also does *not* do anything useful."
"**Q7**: Indexing into a `str` object with a *negative* index **fails silently**: It does *neither* raise an error *nor* do anything useful."
]
},
{