Bingo-py-game
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
Requirements
- Install python
- 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.
- Enter your username
- Create your 5x5 Bingo Grid
- The grid should comprise only of numbers from 1 to 25
- 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!
- Try to cross out 5 rows and/or columns before your opponent (i.e. the PC)
- You can only enter one number of choice at a time
- In the end the winner will be declared.