SecretWord = ['n','e','t','b','a','l','l'] GuessedWord = ['','','','','','',''] errors = 0 while errors < 5 and SecretWord != GuessedWord: print "The guessed word is", GuessedWord guess = raw_input("Guess a character:") print errors,"errors" for letters in SecretWord: if guess == letters: index = 0 while index<len(SecretWord) : if SecretWord[index]==guess: GuessedWord[index]=SecretWord[index] index += 1 if SecretWord.count(guess)==0: errors += 1 if SecretWord ==GuessedWord: print "The guessed word is", GuessedWord print "This is the correct word." elif errors == 5: print "You have",errors,"errors." print "you did not make it, the correct word is",SecretWord
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question