This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [] |
NewerOlder