Skip to content

A python module for generating the result of probability-based toys. Installable on any system with pip command.

License

Notifications You must be signed in to change notification settings

thenithinbalaji/pyrandtoys

Repository files navigation

PyRandToys

GitHub release (latest by date) GitHub Release Date GitHub repo size
GitHub contributors GitHub closed issues License
pyrandtoys is a python module containing probability-based toys' functions.
It works offline and is compatible with both Python 2 and 3.

🔮 Installation

pip install pyrandtoys

🖥️ Usage

import pyrandtoys
print(pyrandtoys.coin()) #there are many other toys in pyrandtoys similar to coin, check below

List of functions available in pyrandtoys module

🎲 Dice

Optional: Number of Dice <int>
Default: Number of Dice = 1
Return Type: <tuple>

dice(number_of_dice)

🏆 Coin

Optional: Number of Coins <int>
Default: Number of Coins = 1
Return Type: <tuple>

coin(number_of_coins)

🃏 Card

Optional: Number of Cards <int>
Default: Number of Cards = 1
Return Type: <tuple>

card(number_of_cards)

🧮 Similar Toys

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)

⚖️ Spinner

Required: Lower & Upper Limits <int>
Default: Lower Limit = 0
Return Type: <int>

spinner(lowerLimit, upperLimit) 

🥂 Toy Combinations

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)

📚 Project Links