Pig game takeTurn sample output

Testing the takeTurn function

$ python3 pig.py

Jane, it is your turn.

You rolled a 1.
* * * Oh no! you lose all your points this turn. * * *
Jane scored 0 points this turn.
$ python3 pig.py

Jane, it is your turn.

You rolled a 5.
You have 5 points this turn.
If you stop now you would have 5 points.
Do you want to stop? no
You rolled a 3.
You have 8 points this turn.
If you stop now you would have 8 points.
Do you want to stop? no
You rolled a 2.
You have 10 points this turn.
If you stop now you would have 10 points.
Do you want to stop? yes
Jane scored 10 points this turn.
$ python3 pig.py

Jane, it is your turn.

You rolled a 5.
You have 5 points this turn.
If you stop now you would have 5 points.
Do you want to stop? yes
Jane scored 5 points this turn.