At version 0.0.2, you could change the Aleatoryous mode by typing:
python
obj = Aleatoryous("aleatory.coin")
obj.mode = "Dice"
But now, **that operation is forbidden**, and the system might return a message
like this:
Traceback (most recent call last):
File .../-.py in <module>
obj.mode = "Dice"
^
AttributeError: object "Aleatoryous" has no attribute "mode"
Instead of that, **use the new method _Aleatoryous.changemode()_**:
python
obj.changemode("aleatory.dice")
Also, in version 0.0.3, you can get the mode name of your object:
python
print(obj.getmode())