Skip to main content

Play the Game of Nim, interactively or using the API

Project description

“””Play the Game of Nim, interactively or using the API

About

This package implements the game called Nim. The game can be played interactively in the CLI, or in a web browser. You can install this package and play the game. Easy:

> pip install nimgame
> nimgame

You can actually TryIt, before installing anything.

Those, who are more of the developer types, can use the API, after installing the package. The game can then be embedded in other applications and played from any other kind of a GUI.

For mathematicians/statisticians, it can also be used for creating statistics by running multiple games. If you know combinatorial game theory terms like sequential game, perfect information, impartial game, Sprague–Grundy theorem, this API can be useful for you.

Game Rules

For the general description of the Nim and similar games, see the Wikipedia page.

The game is played with coins arranged in heaps. There may be any number of heaps and any number of coins in a heap.

Two palyers play the game. The computer can be a player. Players take turns. In each turn, a player takes coins from one (only 1) heap. There is no upper limit of taken coins (but the heap size). At least 1 coin must be taken.

There are 2 types of the game:

  • the “normal” game is where the player, who takes the last coin, wins

  • the “misère” game is where the player, who has to take the last coin, loses

API Usage

First, the heaps are to be set up. The starting heaps then can be analysed and the starting player selected. If it is the Computer, it automatically does the 1st move. Then the Player is to do the next move, then the Computer moves, and so on. When no more coins left, the game ends.

import nimgame
nim = nimgame.Nim(error_rate=10)  # Make the Computer do 10% errors
nim.setup_heaps()  # Create heaps randomly
nim.set_start(myturn=True)  # Indicate that the Player wants to start
nim.do_move(nim.Move('b', 4))  # From heap 'B', remove 4 coins
...
if nim.game_end():
    exit(0)

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

nimgame-0.1.15.tar.gz (326.7 kB view details)

Uploaded Source

Built Distribution

nimgame-0.1.15-py3-none-any.whl (39.6 kB view details)

Uploaded Python 3

File details

Details for the file nimgame-0.1.15.tar.gz.

File metadata

  • Download URL: nimgame-0.1.15.tar.gz
  • Upload date:
  • Size: 326.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for nimgame-0.1.15.tar.gz
Algorithm Hash digest
SHA256 b1633dc390f06116c1dbf424c6f32b62fa204198b45455977e1377c90b1e0d71
MD5 7e45982f6273fb50a7f1d65da1d98c34
BLAKE2b-256 ae593276f42927be475d2926bd22b428acecb033cf894a28eb4cdadfb7bdd59a

See more details on using hashes here.

File details

Details for the file nimgame-0.1.15-py3-none-any.whl.

File metadata

  • Download URL: nimgame-0.1.15-py3-none-any.whl
  • Upload date:
  • Size: 39.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.22.0

File hashes

Hashes for nimgame-0.1.15-py3-none-any.whl
Algorithm Hash digest
SHA256 e172fa70b8d9788fa0e0bfc98674c04730b15691a4178e4a5fb40055d661ca93
MD5 eaf0f0d8ab2c88bb4128a3e1f955b3a4
BLAKE2b-256 0cfa5b26f3d8c165ccfda50fa5c287981e9873a62782104f48a50cb30505a211

See more details on using hashes here.

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