{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Practical course 3\n", "\n", "## Task 1\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", "1. Use a _loop_ to ask the user on the console three times for names of friends and store them in a list.\n", "2. Go through the list in a _loop_ 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. (Hint: ``enumerate``)\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": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Task 2\n", "\n", "Write the following basic functions:\n", "\n", "1. Write the function ``add``. This function takes two numbers as arguments and returns there sum" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "2. Write the function ``is_even``. This function accepts a number as a parameter and returns a boolean expression (True when even, False when odd)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "3. Implement ``is_odd``. Hint: Do not write it from scratch. Reuse ``is_even`` instead." ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "4. Write the function ``even_or_odd``.\n", "\n", "This function accepts a list of numbers as a parameter.\n", "\n", "The function counts how many numbers in the list are even or odd and returns the following tuple: ``(amount of even numbers, amount of odd numbers)``" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Task 3\n", "\n", "For calculating the sum of all integers from 0 to n the following formula can be used:\n", "\n", "$$0 + 1 + 2 + 3 + 4 + \\dotsb + n = \\sum_{k=0}^n k = \\frac{n(n+1)}{2} = \\frac{n^2+n}{2}$$\n", "\n", "In German this is called the \"Sum formula of Gauss\". This formula does not seem to have any fancy name in English.\n", "\n", "$$\\sum_{k=0}^n k$$ is the _recursive_ formula because the result of the next value is based on the previous one.\n", "\n", "$$\\frac{n(n+1)}{2} = \\frac{n^2+n}{2}$$ are the _explicit_ formulas because they calculate a concreate, single value of the sequence.\n", "\n", "1. Read in the Python documentation about the built-in function ``sum``.\n", "2. Write the function ``sum_explicit`` which accepts ``n`` (see formula above) as an argument and calculates the sum using the _explicit_ formula. (do not use built-in ``sum``)\n", "3. Write the function ``sum_loop`` which accepts ``n`` (see formula above) as an argument and calculates the sum using the _recursive_ formula. (for-loop, do not use built-in ``sum``)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Task 4" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A prime number is a natural number greater than 1 that is not a product of two smaller natural numbers.\n", "\n", "Write the function ``is_prime`` that decides whether a passed number is prime (``True``) or not (``False``)" ] }, { "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 }