I am trying to get know the postion of a letter in a list and how many time it comes up .
when i get those positions i wanted to replace same postitions with in the list right_user_input
.
but whenever i try to do that it returns this error IndexError: list assignment index out of range.
can anyone tell why this is ?
import random
import re
from words import words
# the word that the user needs to guess
the_guess_word = random.choice(words)
n = 0
# puts the random picked word in a list
l_guess = list(the_guess_word)
box = l_guess
# somethings are not yet finished
print("Welcome To The Guessing Game . \n You get 6 Guesses . The Words Are In Dutch But There Is 1 English Word . "
"\n If You Would Want To Try Again You Can Press (ctrl+Z)"
f"\n \n Your Word Has {len(the_guess_word)} letters ")
class hangman:
t = len(box)
right_user_input = []
# should create the amount of letters in the word
right_user_input.append(t * ".")
while True:
# the user guesses the letter
user_guess = input("guess the word : ")
# if user guesses it wrong 6 times he or she loses
if n >= 6 :
print("you lose!")
print(f'\n the word was {the_guess_word}')
break
# loops over until user gets it right or loses
if user_guess not in the_guess_word:
print("\n wrong guess try again ")
n += 1
# when user gets it right the list with the dots gets replaced by the guessed word of the user
if user_guess in the_guess_word :
print("you got it right")
# finds the position of the guessed word in the to be guessed the word
for m in re.finditer(user_guess, the_guess_word):
right_user_input[m.end()] = user_guess
print(right_user_input)
# this the error that i get
# i tried searching around but usually people have empty strings in my case that is not the issue .
# and the value in the right_user_input is len(the_guess_word) * "."
Traceback (most recent call last):
File "C:/Users/Admin/PycharmProjects/hangman/main.py", line 16, in <module>
class hangman:
File "C:/Users/Admin/PycharmProjects/hangman/main.py", line 38, in hangman
right_user_input[m.end()] = user_guess
IndexError: list assignment index out of range
The problem is that you didn't setup right_user_input
correctly. right_user_input.append(t * ".")
just makes the variable equal a single string of t dots (["....."]
) instead of t strings of 1 dot ([".", ".", ".", ".", "."]
).
To fix this, declare the variable this way:
right_user_input = ["." for i in range(len(the_guess_word))]
.
Also, replace right_user_input[m.end()] = user_guess
with
right_user_input[m.end()-1] = user_guess
since arrays start at 0.