Please enable JavaScript in your browser!
Etusivu
Tutki
Apua
Kirjaudu sisään
andreiat
/
code_snippets
peilaus alkaen
https://github.com/CoreyMSchafer/code_snippets.git
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Wiki
Puu:
c6969cfffc
Branchit
Tagit
master
code_snippets
/
Python-Random
/
random_demo.py
random_demo.py
86 B
Historia
Raaka
1
2
3
4
5
6
7
import random
deck = list(range(1, 53))
hand = random.sample(deck, k=5)
print(hand)