Forked from an inaccessible project.
-
Patrick Simmel authoredPatrick Simmel authored
Die Challenges.md 1.33 KiB
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 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.
Images
Code snippets
We can use find -iname STRING
to search for a file in Unix.
The following code1 shuffles a list:
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. It also includes a web-based code editor.
-
Code from PythonSnippets.dev ↩