Skip to content
Snippets Groups Projects
Forked from an inaccessible project.

Markdown examples

Emphasis using Italics, bold. The paragraph continues

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

Charles J. Sharp, CC BY-SA 4.0 https://creativecommons.org/licenses/by-sa/4.0, via Wikimedia Commons

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.

  1. Code from PythonSnippets.dev