Hangman

Adam asmaca oyunu python kullanarak tasarlıyoruz.

Oyunu oldukça basit python bilgisi kullanıyoruz.

Sözde kodu basitçe şu şekildedir:

  1. Kelime için word.py dosyası oluştur.
  2. get_valid_word fonksiyonu ile rastgele kelime seç.
  3. word_letters,alphabet,used_letters set edin
  4. hangman fonsiyonu oluştur.
  5. Görsel için hangman_visual dosyasını oluştur.

ENG

We are designing a hangman game using python.

We use the game quite simple python knowledge.

The pseudocode is simply as follows:

  1. Create word.py file for word.
  2. Select random word with get_valid_word function.
  3. Set word_letters,alphabet,used_letters
  4. create hangman function.
  5. Create the hangman_visual file for the image.