# MiniYahtzee Example # Source code file: test1.py from miniyahtzee import MiniYahtzee y = MiniYahtzee( ) print(y) for i in range(0, 20): y.roll_dice( ) y.classify( ) print(y, y.roll_type)