thanks for taking the time to answer. I am making a hangman game as a beginner Python Project.\
I have the "word" that I split into a list, with each item being a character of the word.
word = "word"
letters = []
letters[:] = word
print(letters)
["w","o","r","d"]
I am not quite sure how to assign a boolean value to each list item, creating tuples, like this:
[("w", False),("o", False), ("r", False), ("d", False)]
How do I go about doing this?