Im new to python and i need some help with this.
TASK : given a list --> words = [\'aba\', \'xyz\', \'xgx\', \'dssd\', \'sdjh\']
words = [\'aba\', \'xyz\', \'xgx\', \'dssd\', \'sdjh\']
i need to com
for i,j in enumerate(words): # i---index of word----j #now you got index of your words (present in i) print(i)