I am making a Hangman Code for a Python class and I can't get a word that has two letters(balloon) to print both letters. This is the specific code snippet. The rest is on the link below. The code is not put together yet.
if letter_ask in word_string:
location = word_string.index(letter_ask)
word_blank_list[location] = letter_ask
print(word_blank_list)
['-', '-', '-', '-', 'o', '-', '-']