{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Practical course 2\n",
"\n",
"Since we have not progressed too far in terms of content, this practical course serves to familiarise us with the Jupyter notebook and basic Python concepts.\n",
"\n",
"So far we have covered the following topics:\n",
"\n",
"- Simple math\n",
"- Data types (int, float, str, list)\n",
"- Text input/output and formating (f-string)\n",
"- Working with lists and slices\n",
"- Conditions with if (flow control)\n",
"\n",
"In case you cannot remember something take a look at the Jupyter Notebook of lecture 2.\n",
"\n",
"The seminars are always usually structured in the following way: You get a Jupyter notebook with tasks. After the task is an empty code cell. Put the code that solves the task in there.\n",
"\n",
"It is likely that the exam will be done in a similiar fashion (take home exam).\n",
"\n",
"## Task 1\n",
"\n",
"Open this file in your local install of Jupyter Lab.\n",
"\n",
"When you can read this you probably already did it. Great!\n",
"\n",
"Now ensure that your Jupyter notebook works correctly. Evaluate the next cell with Ctrl+Return.\n",
"\n",
"Remember that Alt+Return creates a new code cell and pressing d twice deletes a cell."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"1 + 2"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Task 2\n",
"\n",
"Before we start coding lets become familiar with the Python documentation.\n",
"\n",
"The most important information first: When programming _always put **English** questions in a search engine_. There are much much much more resources in English than in e.g. German. The only case where I consider the German documentation pretty good is when you want to write formulas in Microsoft Excel, there are lots of German resources for it.\n",
"\n",
"You can find the docs at \n",
"\n",
"Unfortunately the documentation is hard to understand for a novice. It is written in a very technical way and the examples do not really give any hints how the functions interact with each other. Please navigate around in the Python documentation and try to get familiar with it.\n",
"\n",
"But the tutorial at is quite good for getting an overview or to read about something you forgot.\n",
"\n",
"Another popular page is . Without this page the entire programming ecosystem productivity would come to a halt. It has answers to almost all questions.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Task 3\n",
"\n",
"Your first real task is about asking the user of this notebook certain questions.\n",
"\n",
"Prompt the user for the following things and store them in variables. Remember that asking is done with the ``input`` function.\n",
"\n",
"- The name\n",
"- The year of birth\n",
"- The height in metres (m)\n",
"\n",
"Afterwards output the following text on the console in an appropriate way (``print``). Use f-strings for formating because f-strings are cool:\n",
"\n",
"- The name\n",
"- The age (calculated from the year of birth)\n",
"- The height in cm\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Task 4\n",
"\n",
"Let the user input a number and then output certain properties about the number.\n",
"\n",
"Using the ``if`` condition, check the following properties of the number and output an appropriate text on the console.\n",
"\n",
"1. Output a text when the number is _odd_\n",
"2. Output a text depending on the following conditions (``if-else``):\n",
" - Positive\n",
" - Is zero\n",
" - Negative\n",
"3. Output a text when the number is divisible by 3 without remainder\n",
"4. Output a text depending on the following conditions (``if-else``):\n",
" - The number has one digit\n",
" - The number has two digits\n",
"5. Output a text if the number is 42. :)\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Task 5\n",
"\n",
"1. Ask the user for a name and then greet the user (``Hello [NAME]``).\n",
"2. If the name is equal to your first name, say something like ``That name is nice!``\n",
"3. Insert the following code before the output of ``Hello [NAME]``:\n",
"\n",
"Since names begin with an uppercase letter, the program should now check if the name begins with a lowercase letter and print an error message in that case.\n",
"\n",
"Please research in the internet how to check in Python whether is string is lowercase. You can use the Python reference or any search engine for it."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Task 6\n",
"\n",
"Finally, we work with lists. Lists are similiar to strings but can contain various data types. Therefore you should be already quite familiar with it.\n",
"\n",
"_We did not talk about loops yet. I will introduce you to them later during the session._\n",
"\n",
"1. Ask the user on the console three times for names of friends and store them in a list.\n",
"2. Now go through the and output the following text for each entry: ``Friend N: NAME``. Replace ``N`` with a sequence number (starting with 1) and ``NAME`` with the name from the list.\n",
"3. Remove the last entry from the list.\n",
"4. Output the length of the list."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.2"
}
},
"nbformat": 4,
"nbformat_minor": 4
}