Skip to main content

Python Module for generating the result of probability based toys.

Project description

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

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:

  • Default: Number of Toys = 0

  • Return Type: <tuple>

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 details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrandtoys-1.0.0.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

pyrandtoys-1.0.0-py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page