Skip to content
Snippets Groups Projects
Commit c2185093 authored by Jöran Frey's avatar Jöran Frey
Browse files

removed solution from exercise

parent f9b64582
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id:becc5c8b tags:
# Exercise 1: Jupyter Notebooks
## Introduction to Jupyter Notebooks
Try out different cell types, including code and markdown cells.
%% Cell type:markdown id:4cd048de tags:
### 1: Markdown cells
%% Cell type:markdown id:f9f4a25b tags:
#### 1.1 Headers in Markdown
Implement Mardown code to implement 4 header levels name the different levels 1 to 4 <br>
%% Cell type:markdown id:4e959eae tags:
%% Cell type:markdown id:9778cbbe tags:
#### 1.2 Text formatting in Markdown
Write the following words with the desired formatting using a line break between each word <br>
A word printed **in bold**: “Word1” <br>
One word printed in *italics*: “Word2” <br>
One ~~strikethrough~~ word: “Word3” <br>
One ___italic and bold word___: “Word4” <br>
%% Cell type:markdown id:b0a6b08a tags:
**Word1**
*italic*
%% Cell type:markdown id:189de41f tags:
#### 1.3 Tables in Markdown
Create a table with three columns and three rows that contains the profiles of three individuals, including their name, age, and profession.
%% Cell type:markdown id:80a329a0 tags:
%% Cell type:markdown id:e3d789bd tags:
#### 1.4 Mathematical formulas in Markdown
Insert the formula for calculating the volume of a sphere from a radius <br>
> here a Cheat sheet that can help: https://www.upyesp.org/posts/makrdown-vscode-math-notation/
Example midnight formula:
x = $\frac{-b \pm \sqrt{b^2 - 4ac}}{2a}$
%% Cell type:markdown id:4845547f tags:
%% Cell type:markdown id:303a067d tags:
#### 1.5 Images in Markdown
Add any image in Markdown and add a hyperlink with the URL matching the image<br>
![Picture](https://www.sumomag.at/wp-content/uploads/2016/02/Corporate-Publishing_1-e1455555060462.png) <br>
[Link](https://www.reddit.com/r/languagelearning/comments/14wrdi3/good_luck/)
%% Cell type:markdown id:87c4eef8 tags:
%% Cell type:markdown id:d4878f98 tags:
#### 1.6 Lists
##### 1.6.1 numbered lists
Create an ordered list as shown in the example below
1. First item
2. Second item
3. Third item
1. Indented item
2. Indented item
4. Fourth item
<br>
The list should consist of two main items fruits and vegetables, with sub-items of fruits being bananas and apples and sub-items of vegetables being carrots and potatoes
%% Cell type:markdown id:5795b9c2 tags:
%% Cell type:markdown id:68f111de tags:
##### 1.6.1 Bulletpoint lists
Create an unordered list with bullet points with Point 1 Point 2
- Point 1
- Point 2
%% Cell type:markdown id:91106711 tags:
%% Cell type:markdown id:81e4c706 tags:
1.7 Quotes
Write a quote using the formulation method you see below <br>
Make the sentence below a quotation <br>
Programming is the art of telling another human being what one wants the computer to do.
%% Cell type:markdown id:177f1a55 tags:
%% Cell type:markdown id:97ae5c25 tags:
#### 2: Code Cells
%% Cell type:markdown id:432de469 tags:
#### 2.1 Hello world!
Next insert a code cell which displays hello world!
%% Cell type:code id:138598dc tags:
``` python
```
%% Output
Hello world!
%% Cell type:markdown id:77f74fb5 tags:
%% Cell type:markdown id:bc1be52c tags:
#### 3: Advanced Exercises
#### 3: First step in Python
%% Cell type:markdown id:d4cc568a tags:
Create a Python program that performs the following arithmetic operations using two variables ``a`` and ``b``
- Addition
- Subtraction
- Multiplication
- Division
%% Cell type:code id:4fdc25ef tags:
``` python
a = 10
b = 5
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment