Please enable JavaScript in your browser!
Startseite
Erkunden
Hilfe
Anmelden
andreiat
/
code_snippets
Mirror von
https://github.com/CoreyMSchafer/code_snippets.git
Beobachten
1
Favorit hinzufügen
0
Fork
0
Dateien
Issues
0
Wiki
Struktur:
c6969cfffc
Branches
Tags
master
code_snippets
/
Python-Random
/
random_demo.py
random_demo.py
86 B
Verlauf
Originalformat
1
2
3
4
5
6
7
import random
deck = list(range(1, 53))
hand = random.sample(deck, k=5)
print(hand)