Error in user YAML: (<unknown>): did not find expected key while parsing a block mapping at line 1 column 1
---
title: test
next: [Step 2](@step_2.md) ///links not creating within "---"
prev: [Intro](@intro.md)
jump to: @step1.md
---
Here we'll create a function to shuffle the deck. It takes one argument a "deck" which is just a list of cards // more text //
Try using random.randint([start],[end])
random.randint() generates random numbers, within a given a range of ints.
// quick ex how to use //
Given a list of ints from 1 to 10, you could return a random int by:
random.randint(1,10)
It is possible that any number from 1 to 10 is returned.