Write a function that takes a single string (word) as argument. The function must return an ordered list containing the indexes of all capital letters in the string.
Example:
Test.assertSimilar( capitals('CodEWaRs'), [0,3,4,6] );def capitals(word):
passdef capitals(word):
inds = []
i = 0
for l in word:
if l.isupper():
inds.append(i)
i += 1
return indsdef capitals(word):
return [i for (i, c) in enumerate(word) if c.isupper()]