-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c6b1923
commit 8ac5d06
Showing
8 changed files
with
126 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Metadata-Version: 2.1 | ||
Name: pyrandtoys | ||
Version: 0.0.1 | ||
Version: 0.0.2 | ||
Summary: Python Module for generating the result of probability based toys. | ||
Home-page: https://github.com/thenithinbalaji/pyrandtoys | ||
Author: thenithinbalaji | ||
Author-email: [email protected] | ||
License: UNKNOWN | ||
Keywords: python,random,probability | ||
Keywords: python,random,probability,experiment | ||
Platform: UNKNOWN | ||
Classifier: Intended Audience :: Education | ||
Classifier: Intended Audience :: Developers | ||
|
@@ -21,7 +21,7 @@ License-File: LICENSE.md | |
Rand Toys | ||
========= | ||
|
||
``pyrandtoys`` is a python module containing probability-based toys’ | ||
``pyrandtoys`` is a python module containing probability-based toys | ||
functions. It works offline and is compatible with both Python 2 and 3. | ||
|
||
Installation | ||
|
@@ -41,9 +41,9 @@ Usage | |
Dice: | ||
^^^^^ | ||
|
||
**Optional:** Number of Dice ``<int>`` | ||
**Default:** Number of Dice = 1 | ||
**Return Type:** ``<tuple>`` | ||
+ **Optional:** Number of Dice ``<int>`` | ||
+ **Default:** Number of Dice = 1 | ||
+ **Return Type:** ``<tuple>`` | ||
|
||
:: | ||
|
||
|
@@ -52,8 +52,9 @@ Dice: | |
Coin: | ||
^^^^^ | ||
|
||
**Optional:** Number of Coins ``<int>`` **Default:** Number of Coins = 1 | ||
**Return Type:** ``<tuple>`` | ||
+ **Optional:** Number of Coins ``<int>`` | ||
+ **Default:** Number of Coins = 1 | ||
+ **Return Type:** ``<tuple>`` | ||
|
||
:: | ||
|
||
|
@@ -62,8 +63,9 @@ Coin: | |
Similar Toys: | ||
^^^^^^^^^^^^^ | ||
|
||
**Optional:** Number of Items ``<int>`` **Default:** Number of Items = 1 | ||
**Return Type:** ``<tuple>`` | ||
+ **Optional:** Number of Items ``<int>`` | ||
+ **Default:** Number of Items = 1 | ||
+ **Return Type:** ``<tuple>`` | ||
|
||
:: | ||
|
||
|
@@ -74,8 +76,9 @@ Similar Toys: | |
Spinner: | ||
^^^^^^^^ | ||
|
||
**Required:** Lower & Upper Limits ``<int>`` **Default:** Lower Limit = | ||
0 **Return Type:** ``<tuple>`` | ||
+ **Required:** Lower & Upper Limits ``<int>`` | ||
+ **Default:** Lower Limit = 0 | ||
+ **Return Type:** ``<tuple>`` | ||
|
||
:: | ||
|
||
|
@@ -84,10 +87,11 @@ Spinner: | |
Toy Combinations: | ||
^^^^^^^^^^^^^^^^^ | ||
|
||
**Return Type:** ``<tuple>`` **Default:** Number of Toys = 0 | ||
+ **Default:** Number of Toys = 0 | ||
+ **Return Type:** ``<tuple>`` | ||
|
||
**If you want to use a combination of toys then,** **Required:** List of | ||
toys as ``<list>``,\ ``<tuple>`` | ||
**If you want to use a combination of toys then,** | ||
**Required:** List of toys as ``<list>``,\ ``<tuple>`` | ||
|
||
:: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters