# Die Challenges und der Code Es wurden verschiedene Challenges gestellt, die der Bot mit unseren Skripten lösen sollte. Die verschiedenen Challenges sind in [diesem Repository](https://mygit.th-deg.de/gaydos/tb3-maze-challenges) zu finden. Emphasis using *Italics*, **bold**. The paragraph continues ## Der Code This is the second paragraph. ## Blockquotes Kermit from the Muppet Movie: > Life's like a movie. Write your own ending. ## Lists - apple - banana - cherry ## Links More info can be found on [Python docs – Exceptions](https://docs.python.org/3/reference/executionmodel.html#exceptions). ## Images  ## Code snippets We can use `find -iname STRING` to search for a file in Unix. The following code[^1] shuffles a list: ```python from random import shuffle foo = [1, 2, 3, 4] shuffle(foo) print(foo) ``` ## The end If you want to try these, follow this [Markdown tutorial](https://commonmark.org/help/tutorial). It also includes a web-based code editor. [^1]: Code from [PythonSnippets.dev](https://pythonsnippets.dev/snippet/23/)