pyrandtoys
is a python module containing probability-based toys' functions.
It works offline and is compatible with both Python 2 and 3.
pip install pyrandtoys
import pyrandtoys
print(pyrandtoys.coin()) #there are many other toys in pyrandtoys similar to coin, check below
Optional: Number of Dice <int>
Default: Number of Dice = 1
Return Type: <tuple>
dice(number_of_dice)
Optional: Number of Coins <int>
Default: Number of Coins = 1
Return Type: <tuple>
coin(number_of_coins)
Optional: Number of Cards <int>
Default: Number of Cards = 1
Return Type: <tuple>
card(number_of_cards)
Optional: Number of Items <int>
Default: Number of Items = 1
Return Type: <tuple>
dreidel(number_of_dreis)
cat(number_of_cats)
switch(number_of_switches)
Required: Lower & Upper Limits <int>
Default: Lower Limit = 0
Return Type: <int>
spinner(lowerLimit, upperLimit)
Return Type: <tuple>
Default: Number of Toys = 0
If you want to use a combination of toys then,
Required: names of toys as <tuple>, <list>, <str>
combi("coin", "switch")
combi(("switch", "cat", "dice"))
combi(["dreidel", "coin", "coin", "cat"])
For combination of x random toys,
combi(x)