Skip to content

Instantly share code, notes, and snippets.

View Grumblesaur's full-sized avatar

James Murphy Grumblesaur

  • Arlington, VA
  • 18:52 (UTC -04:00)
View GitHub Profile
@Grumblesaur
Grumblesaur / statroll.py
Last active August 29, 2015 14:15 — forked from CptKirklnd/statroll.py
4d6 drop 1 script for d20 system character creation
from random import randint
import sys
#allow for python2 and python3 compatibility
if sys.version_info >= (3,0):
raw_input = input
#list of final attribute scores
statList = []