This is project "Brain Games" on the Python Development course on Hexlet.io
This project was built using these tools:
| Tool | Description |
|---|---|
| poetry | "Python dependency management and packaging made easy" |
| Py.Test | "A mature full-featured Python testing tool" |
| Flake8 | "Your Tool For Style Guide Enforcement" |
git clone https://github.com/sergeikuz/python-project-49
cd python-project-49
make package-install
"Mind Games" is a set of five console games based on the popular mobile brain-pumping apps. Each game asks questions that need to be answered correctly. After three correct answers, the game is considered completed. Incorrect answers end the game and prompt you to play it again.
brain-even
brain-calc
brain-gcd
brain-progression
brain-prime
✏️*Make sure that you have Python version 3.6 or higher installed.
- brain-even: Determine if the number is even. You need to answer yes if the number is even, or no if it is odd.
- brain-calc: You are shown a random math expression, which you need to calculate and write down the correct answer.
- brain-gcd: You are shown a random numbers. And you have to calculate and enter the greatest common divisor of these numbers.
- brain-progression: You are shown a random arithmetic progression. You have to calculate the forgiven number.
- brain-prime: Determine if the number id prime. You need to answer yes if the number is prime, or no if it it is not this way.