codexashutosh / Bingo-Game

A game coded with Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bingo | Game Of Numbers

A game coded with Python

Introduction

This is a Terminal-based game currently in its initial stage. I am working on adding more efficient algorithms. For now it is just as simply coded as it could be to satisfy the necessary functionalities of the game.

Screenshot

Bingo Game

Requirements

  1. Install python
  2. Install python3 Tkinter module

Install requirements in Linux

  • Check if python is already installed or not.
  • Type the following code in Terminal and press ENTER:
    python3
  • If it says python3 is not installed, then type the following code in Terminal and press ENTER:
    sudo apt-get install python python3-tk
  • The above code will install both python and Tkinter module for python3 together.
  • If python is already installed, then type the following code in Terminal and press ENTER:
    sudo apt-get install python3-tk

Description

The short version of the following description is explained in the beginning of the game.

  1. Enter your username
  2. Create your 5x5 Bingo Grid
  3. The grid should comprise only of numbers from 1 to 25
  4. The numbers must be entered one by one i.e. one row after another according to your tactics (Just press enter after each input, the code will automatically set your 25 inputs in the right way, as a 5x5 matrix) and the games starts!
  5. Try to cross out 5 rows and/or columns before your opponent (i.e. the PC)
  6. You can only enter one number of choice at a time
  7. In the end the winner will be declared.

About

A game coded with Python

License:MIT License


Languages

Language:Python 100.0%