Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.
/ CoinToss Public archive

Simple coin toss simulator written in our good friend Python3

Notifications You must be signed in to change notification settings

RagingTiger/CoinToss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

About

Simple coin toss simulator written in our good friend Python 3.

Installation

git clone https://github.com/RagingTiger/CoinToss.git && cd CoinToss
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

Usage

The command line interface portion of this module uses the fire library, which generates the below documentation by running python cointoss.py as follows:

NAME
    cointoss.py - A class with various methods for simulating a coin toss.

SYNOPSIS
    cointoss.py COMMAND

DESCRIPTION
    A class with various methods for simulating a coin toss.

COMMANDS
    COMMAND is one of the following:

     simulate
       Run coin toss simulation with heads considered wins (i.e. 1) and tails
       considered losses (i.e. 0).

To find out more about any of the COMMANDS shown above simply run the help flag --help after the command. For example to learn about the simulate command:

NAME
    cointoss.py simulate - Run coin toss simulation with heads considered wins
    (i.e. 1) and tails considered losses (i.e. 0).

SYNOPSIS
    cointoss.py simulate GAMES <flags>

DESCRIPTION
    Run coin toss simulation with heads considered wins (i.e. 1) and tails
    considered losses (i.e. 0).

POSITIONAL ARGUMENTS
    GAMES
        Number of coin toss games to play.

FLAGS
    --probability=PROBABILITY
        Probability of coin toss resulting in heads.

NOTES
    You can also use flags syntax for POSITIONAL ARGUMENTS

Releases

No releases published

Packages

No packages published

Languages