The Hangman game written in Python 2.7.3
=================================== Hangman is a word guessing game. How to play hangman?
- System will tell you to guess a secret word of length 6 [let's asume system takes 'github' as secret word.]
- It will show you in underscores _ _ _ _ _ _
- user enters a character : i --system will show _ i _ _ _ _
- user enters a character : a --system will show _ i _ _ _ _
- user enters a character : g --system will show g i _ _ _ _
- If the guess is correct no of guess will not be decreased.
- In this way user has to guess the whole word in maximum 8 guess.
- At the end System will show the Secret Word.