https://github.com/amssdias/python-hangman
Hangman game
https://github.com/amssdias/python-hangman
Last synced: 10 months ago
JSON representation
Hangman game
- Host: GitHub
- URL: https://github.com/amssdias/python-hangman
- Owner: amssdias
- Created: 2021-03-14T09:51:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-17T15:43:10.000Z (almost 5 years ago)
- Last Synced: 2025-01-13T19:24:31.068Z (12 months ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangman
## Pre requisites
* [Python](https://www.python.org/downloads/) - 3.7 or up
### Installing
- Download latest version of [Python](https://www.python.org/downloads/) :point_left:
**1.** Go to the website above, and click on download
**2.** Choose depending on which processor is your machine (in this example we looking to the files of Python 3.9.2)
**3.** Double click and install (Add python to PATH just at the beginning of instalation)
### Run
- Download the project, open terminal window on folder with 'hangman.py' and type:
```
python hangman.py
```
## About Hangman
Going back to our old school days, some of the pen-paper games were always a top for our leisure time. Hangman was one, other than some chit games, to guess words according to the guesses determined and as soon as they lost all their wrong guesses, they were hanged (not really, but on paper 😉). That is an old way, now to play Hangman. The new advancement in technologies allows us to play hangman using our own computer also without any other player. How? Let’s find out further.
## Python Hangman Project
The objective of our project is to implement the hangman game using Python. It doesn’t require any specific modules other than random. Python loops and functions are enough to build this game here.