Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Help Me Understand Hangman Game Breakdown in Python

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 697
    Answer it
    1. My question is with regards to the below code its a hangman game. I got this code online and trying to reverse engineer it so i can understand it better. My question is specifically regarding two lines , i need to understand the individual line and also i think the two lines are linked and need to know how there are there linked
    2. the first line in question is..........guessed[letter] = 1.....i understand this assign the a value to key but what benefit does it give my assiging 1 to the key.
    3. The second line......print(" ".join([ch if guessed[ch] else "_" for ch in word])).... i dont under what this line does and what does "ch" mean and what does it do please clarify
    4.  
    5. import random
    6. WORDS= ("variable", "python", "turtle", "string", "loop")
    7.  
    8. word = random.choice(WORDS)#chooses randomly from the choice of words
    9. print ("The word is", len(word), "letters long.")# used to show how many letters are in the random word
    10.  
    11. ln = len(word)
    12. guessed = dict.fromkeys(word, 0)
    13. print("_ "*ln)
    14. correct = 0
    15. for i in range(1, 9):#gives the amount of guesses allocated
    16. letter = input("Guess a letter ")
    17.  
    18. if letter in word:
    19. print ("Correct! {} is in the word".format(letter))#if guesses letter is correct print correct
    20. guessed[letter] = 1
    21. correct += 1
    22. if correct == ln:
    23. print("Congratulations! you win.\n The word was {}".format(word))
    24. break
    25. else:
    26. print ("Incorrect! {} is not in the word".format(letter))
    27. #if its wrong print incorecct
    28. print(" ".join([ch if guessed[ch] else "_" for ch in word]))
    29. else:
    30. print("You lose!\nThe word was {}".format(word))

 0 Answer(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: