Streamline previous content

This includes shortening the filename of notebook 01
This commit is contained in:
Alexander Hess 2019-09-24 19:44:39 +02:00
commit 514b2dac40
4 changed files with 38 additions and 27 deletions

View file

@ -429,7 +429,7 @@
}
},
"source": [
"Here is a brief history of and some background on Python:\n",
"Here is a brief history of and some background on Python (cf., also this [TechRepublic article](https://www.techrepublic.com/article/python-is-eating-the-world-how-one-developers-side-project-became-the-hottest-programming-language-on-the-planet/) for a more elaborate story):\n",
"\n",
"- [Guido van Rossum](https://en.wikipedia.org/wiki/Guido_van_Rossum) (Pythons **[Benevolent Dictator for Life](https://en.wikipedia.org/wiki/Benevolent_dictator_for_life)**) was bored during a week around Christmas 1989 and started Python as a hobby project \"that would keep \\[him\\] occupied\" for some days\n",
"- the idea was to create a **general-purpose scripting** language that would allow fast **prototyping** and would **run on every operating system**\n",
@ -439,6 +439,17 @@
"- the language is named after the sketch comedy group [Monty Python](https://en.wikipedia.org/wiki/Monty_Python)"
]
},
{
"cell_type": "markdown",
"metadata": {
"slideshow": {
"slide_type": "skip"
}
},
"source": [
"#### Summary"
]
},
{
"cell_type": "markdown",
"metadata": {
@ -447,7 +458,7 @@
}
},
"source": [
"Python is a **general-purpose** programming language that allows for **fast development**, is **easy to comprehend**, **open-source**, long established, unifies the knowledge of **hundreds of thousands of experts** around the world, runs on basically every machine, and can handle the complexities of applications involving **big data**."
"Python is a **general-purpose** programming language that allows for **fast development**, is **easy to read**, **open-source**, long established, unifies the knowledge of **hundreds of thousands of experts** around the world, runs on basically every machine, and can handle the complexities of applications involving **big data**."
]
},
{
@ -770,7 +781,7 @@
" 1. Elements of a Program\n",
" 2. Functions & Modularization\n",
"- What is the flow of execution? How can we form sentences from words?\n",
" 3. Boolean Logic & Conditionals\n",
" 3. Conditionals & Exceptions\n",
" 4. Recursion & Looping"
]
},
@ -813,7 +824,7 @@
}
},
"source": [
"As with every good lecture, there has to be a [xkcd](https://xkcd.com/353/) comic somewhere."
"As with every good book, there has to be a [xkcd](https://xkcd.com/353/) comic somewhere."
]
},
{