Skip to content

Instantly share code, notes, and snippets.

@yusuke0519
Created September 3, 2015 02:55
Show Gist options
  • Save yusuke0519/d54987694044d51134bc to your computer and use it in GitHub Desktop.
Save yusuke0519/d54987694044d51134bc to your computer and use it in GitHub Desktop.
ランダムにサンプルを抽出する
import random
marks = ['club', 'diamond', 'heart', 'spade']
numbers = range(1, 14)
cards = [(m, n) for m in marks for n in numbers]
random.choice(cards) # => トランプのカードのいずれか
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment