An open API service indexing awesome lists of open source software.

https://github.com/amssdias/python-hangman

Hangman game
https://github.com/amssdias/python-hangman

Last synced: 10 months ago
JSON representation

Hangman game

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.