word = "Hello"
capital_letters = [letter.upper() for letter in word]
print(capital_letters) # Output: ['H', 'E', 'L', 'L', 'O']