Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 616 Bytes

test.md

File metadata and controls

29 lines (20 loc) · 616 Bytes
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
---

STEP 1


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 //


Tip!

Try using random.randint([start],[end])

random.randint() generates random numbers, within a given a range of ints.

// quick ex how to use //

For example:

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.