Skip to content

Instantly share code, notes, and snippets.

View agalii's full-sized avatar

Vanta Black agalii

  • Berlin, Germany
View GitHub Profile
@agalii
agalii / LaPlace_dice.py
Last active August 29, 2015 14:12
A python script to test your LaPlace ability
import sys
print ' '
print 'Choose sample size n (default is 100)'
n_in = sys.stdin.readline()
try:
n = int(n_in)
except:
n = 100