How use enumerate to help find the indices of all words containing 'x'
Thank you
wordsFile = open("words.txt", 'r')
words = wordsFile.read()
wordsFile.close()
wordList = words.split()
indices=[]
for (index, value) in enumerate(wordList):
if value == 'x':
print("These locations contain words containing the letter 'x':\n",indices)